diff options
Diffstat (limited to 'ccan/compiler/test/compile_fail-printf.c')
| -rw-r--r-- | ccan/compiler/test/compile_fail-printf.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ccan/compiler/test/compile_fail-printf.c b/ccan/compiler/test/compile_fail-printf.c new file mode 100644 index 0000000..7664f65 --- /dev/null +++ b/ccan/compiler/test/compile_fail-printf.c @@ -0,0 +1,24 @@ +#include <ccan/compiler/compiler.h> + +static void PRINTF_FMT(2,3) my_printf(int x, const char *fmt, ...) +{ + (void)x; + (void)fmt; +} + +int main(void) +{ + unsigned int i = 0; + + my_printf(1, "Not a pointer " +#ifdef FAIL + "%p", +#if !HAVE_ATTRIBUTE_PRINTF +#error "Unfortunately we don't fail if !HAVE_ATTRIBUTE_PRINTF." +#endif +#else + "%i", +#endif + i); + return 0; +} |
