* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-pure.C
blobf54b7c59f78da152d672d457e95f3baa06bc9615
1 // { dg-do compile { target c++11 } }
3 struct A
5   virtual void f() = 0;
6 };
8 struct B: A
10   void f() { }
13 B b;