bcachefs-tools/ccan/build_assert/test/compile_fail.c
2016-03-11 21:18:42 -09:00

10 lines
135 B
C

#include <ccan/build_assert/build_assert.h>
int main(int argc, char *argv[])
{
#ifdef FAIL
BUILD_ASSERT(1 == 0);
#endif
return 0;
}