Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / inherit / using4.C
bloba0b38737e1ea22a63e8a305d48bb019677f5ea39
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 6 Jun 2005 <nathan@codesourcery.com>
4 // PR 20613:uninformative diagnostic
5 // Origin:  Wolfgang Bangerth <bangerth@dealii.org>
7 struct B { 
8   void f();
9 }; 
11 struct D : B { 
12   using B::f; 
13   using B::f;  // { dg-error "repeated" }
14 };