aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/tc1/dr101.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/tc1/dr101.C')
-rw-r--r--gcc/testsuite/g++.dg/tc1/dr101.C7
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/testsuite/g++.dg/tc1/dr101.C b/gcc/testsuite/g++.dg/tc1/dr101.C
index c5b34a4..0316aaa 100644
--- a/gcc/testsuite/g++.dg/tc1/dr101.C
+++ b/gcc/testsuite/g++.dg/tc1/dr101.C
@@ -17,15 +17,14 @@ namespace Test1 {
namespace Test2 {
- typedef unsigned int X; // { dg-bogus "X" "" { xfail *-*-* } }
+ typedef unsigned int X; // { dg-bogus "X" "" }
extern "C" int f2();
namespace N {
- typedef unsigned int X; // { dg-bogus "X" "" { xfail *-*-* } }
+ 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" { xfail *-*-* } }
+ X x; // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }
}
-