* g++.old-deja/g++.ns/extern1.C: fix XFAIL mark
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Fri, 9 Oct 1998 21:25:57 +0000 (21:25 +0000)
committerAlexandre Oliva <oliva@gcc.gnu.org>
Fri, 9 Oct 1998 21:25:57 +0000 (21:25 +0000)
From-SVN: r22968

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.ns/extern1.C

index 26a8f05abe71440f173c1f3659e54b519ac031ed..1512987c72bf4456566052bcdf0f116f3ae81204 100644 (file)
@@ -1,3 +1,7 @@
+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.
index f4ab5ef9e7434e8f4634c3432b08340600cbbcbd..0c8a45c5bdc38b7b3c6b39f8537bf758975a6b53 100644 (file)
@@ -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;