eb133b.C: Add XFAILed error for 'using namespace std' without previous declaration.

* g++.old-deja/g++.robertl/eb133b.C: Add XFAILed error for
	'using namespace std' without previous declaration.
	* g++.old-deja/g++.robertl/eb133.C: Remove, exact dup of eb133b.C.
	* g++.old-deja/g++.robertl/eb133c.C: New.

From-SVN: r117862
This commit is contained in:
Geoffrey Keating 2006-10-18 20:09:39 +00:00 committed by Geoffrey Keating
parent 2174b86706
commit c4c7fca31f
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2006-10-18 Geoffrey Keating <geoffk@apple.com>
* g++.old-deja/g++.robertl/eb133b.C: Add XFAILed error for
'using namespace std' without previous declaration.
* g++.old-deja/g++.robertl/eb133.C: Remove, exact dup of eb133b.C.
* g++.old-deja/g++.robertl/eb133c.C: New.
2006-10-17 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/29277

View File

@ -3,7 +3,7 @@
// From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
// Reported against EGCS snaps 98/06/28.
using namespace std;
using namespace std; // { dg-error "" "" { xfail *-*-* } }
int main()
{
@ -14,5 +14,3 @@ int main()
}
return 0;
}

View File

@ -3,6 +3,7 @@
// From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
// Reported against EGCS snaps 98/06/28.
namespace std { }
using namespace std;
int main()
@ -14,4 +15,3 @@ int main()
}
return 0;
}