Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / scoped2.C
blob99cedcec8b15e85ecea90fbc42d1af2c64d22e26
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   }