* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr33.C
blob75c782ac8ffd1e0c1307b6e93479eca83ea902d5
1 // PR c++/63757
2 // { dg-do compile { target c++11 } }
4 typedef decltype(nullptr) nullptr_t;
6 void bar(void*) {}
7  
8 struct foo
10   operator nullptr_t()
11   {
12     return nullptr;
13   }
16 int main()
18   bar(foo());