* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr50491.C
blobd203a33efeb91f1a496f5b723025051bf3fd9e93
1 // { dg-do compile { target c++11 } }
3 struct GrandParent {
4   void *get();
5 };
7 template<class OBJ>
8 struct Parent : public GrandParent{
9 };
11 template<typename T>
12 struct Child : public Parent<T> {
13   using GrandParent::get;
14   void Foo() {
15     void* ex = get();
16   }