mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-26 21:27:38 +02:00
8 lines
84 B
C++
8 lines
84 B
C++
#include "assertions.h"
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
ASSERT_EQ(1 + 2, 3);
|
|
}
|