* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr22.C
blob5fbd124b32c4abb9490e48b3cd230ec5644c1695
1 // { dg-do compile { target c++11 } }
2 // { dg-options "-Wall -Wformat=2 -Wstrict-null-sentinel" }
4 // Test various warnings
6 void f1(const char*, ...) __attribute__((format(printf, 1, 2)));
7 void f2(const char*) __attribute__((nonnull));
8 void f3(const char*, ...) __attribute__((sentinel));
10 void f()
12   f1("%p", nullptr);
13   f2(nullptr); // { dg-warning "null argument where non-null required " }
14   f3("x", "y", __null); // { dg-warning "missing sentinel in function call" }
15   f3("x", "y", nullptr);
16   decltype(nullptr) mynull = 0;
17   f1("%p", mynull);
18   f2(mynull); // { dg-warning "null argument where non-null required " }
19   f3("x", "y", mynull);