OSDN Git Service

* name-lookup.c (current_decl_namespace): Non-static.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / inherit / using5.C
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 8 Jun 2005 <nathan@codesourcery.com>
3
4 // PR 19496: Missing error during parsing.
5 // Origin:  Volker Reichelt <reichelt@gcc.gnu.org>
6
7 template<int> struct A
8 {
9   A::A; // { dg-error "constructor" }
10 };
11
12 struct B
13 {
14   void f ();
15   using B::f; // { dg-error "not a base" }
16 };
17