Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / lookup / scoped2.C
blob08882d97438b99667f0ea0a33f1f1db9ce764155
1 // { dg-do compile }
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 16 Sep 2002 <nathan@codesourcery.com>
6 // Seg faulted.
8 struct Base 
12 struct Derived : Base
14   void Foo ()
15   {
16     Base::Baz ();  // { dg-error "is not a member" "" }
17       
18   };