blob: 9fd827d6aef87b7bcec2e234d5cbb9ccb8b8bdfb [file] [log] [blame]
#include <ccan/build_assert/build_assert.h>
int main(void)
{
#ifdef FAIL
BUILD_ASSERT(1 == 0);
#endif
return 0;
}