blob: 0316aaaa77d30107d6d02e657660dcfb65f56ac1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR101: Redeclaration of extern "C" names via using-declarations
namespace Test1 {
typedef unsigned int X;
extern "C" void f1();
namespace N {
typedef unsigned int X;
extern "C" void f1();
}
using N::f1; // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }
using N::X; // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }
}
namespace Test2 {
typedef unsigned int X; // { dg-bogus "X" "" }
extern "C" int f2();
namespace N {
typedef unsigned int X; // { dg-bogus "X" "" }
extern "C" int f2();
}
using namespace N;
int i = f2(); // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }
X x; // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }
}
|