diff --git a/cmake/test-static-assert.c b/cmake/test-static-assert.c new file mode 100644 index 00000000..3e612bbc --- /dev/null +++ b/cmake/test-static-assert.c @@ -0,0 +1,6 @@ +#include + +static_assert(1, "FAIL"); +int main(int argc, char *argv[]) { + return 0; +}