monero/utils/test-static-assert.c

7 lines
95 B
C
Raw Normal View History

2014-03-03 17:07:58 -05:00
#include <assert.h>
static_assert(1, "FAIL");
int main(int argc, char *argv[]) {
return 0;
2015-01-02 11:52:46 -05:00
}