1 /* { dg-do compile } */
2 /* { dg-options "-Wall" } */
3 extern void ex (int i, ...) __attribute__ ((__sentinel__(0)));
7 ex (1, 0); /* { dg-warning "missing sentinel in function call" "" } */
8 ex (1, 0L); /* { dg-warning "missing sentinel in function call" "" } */
10 ex (1, __null); /* { dg-bogus "sentinel" } */