Crafter.Build/tests/fixtures/defines/main.cpp

8 lines
157 B
C++
Raw Normal View History

import std;
static_assert(CRAFTER_TEST_FOO == 42, "CRAFTER_TEST_FOO should be 42");
int main() {
if (CRAFTER_TEST_FOO != 42) return 1;
return 0;
}