* g++.old-deja/g++.ns/extern1.C: fix XFAIL mark
authoroliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Oct 1998 21:25:57 +0000 (21:25 +0000)
committeroliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Oct 1998 21:25:57 +0000 (21:25 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22968 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 26a8f05..1512987 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 f4ab5ef..0c8a45c 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;