* fi.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using16.C
blob8a36504caf25f4d4c6a6bf8224607f3e9bd3138c
1 // Copyright (C) 2007 Free Software Foundation
2 // Contributed by Ollie Wild <aaw@google.com>
3 // { dg-do compile }
5 namespace M {
6   struct S {}; // { dg-message "struct M::S" "candidate 1" }
9 namespace N {
10   int S;
11   struct S {}; // { dg-message "struct N::S" "candidate 2" }
14 using namespace M;
15 using namespace N;
17 struct ::S s; // { dg-bogus "ambiguous.*ambiguous" "duplicate error" }
18 // { dg-error "reference to 'S' is ambiguous|invalid type" "" { target *-*-* } 17 }}