* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-virtual2.C
blob157854c5aa075c39c937efb02a2e9b82b0429565
1 // PR c++/51474
2 // { dg-do compile { target c++11 } }
4 struct A
6   virtual int foo() = 0;
7   int i = foo();  // { dg-warning "pure virtual" }
8 };