Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / ns2.C
blob10e3f448638f50df4a47c83951cf64dc018545a0
1 // Build don't link:
3 // Copyright (C) 1999 Free Software Foundation
5 // by Alexandre Oliva <oliva@dcc.unicamp.br>
6 // based on bug report by Dima Volodin <dvv@dvv.ru>
7 // variation of ns1.C
9 void foo();
10 namespace bar {
11   using ::foo;
12   class baz {
13     friend void foo(); // gets bogus error - conflict - XFAIL *-*-*
14   };