Commit 4acf6064 by Alexandre Oliva Committed by Alexandre Oliva

* g++.old-deja/g++.ns/extern1.C: fix XFAIL mark

From-SVN: r22968
parent a0a190d4
1998-10-10 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.ns/extern1.C: fix XFAIL mark
Fri Oct 9 19:19:19 1998 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/special/920521-1.c: Fix bogus test.
......
......@@ -5,9 +5,11 @@
// An extern declaration of an undeclared object within a function
// introduces the object into the enclosing namespace [basic.link]/7
// excess errors test - XFAIL *-*-*
namespace {
void foo() {
extern int xx; // causes linker error - XFAIL *-*-*
extern int xx;
xx = 0;
}
int xx = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment