* 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
+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
+++ /dev/null
-// { dg-do assemble }
-// Gives ICE 109
-// From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
-// Reported against EGCS snaps 98/06/28.
-
-using namespace std;
-
-int main()
-{
- try {
- }
- catch (bad_alloc) { // { dg-error "" }
- return 1;
- }
- return 0;
-}
-
// 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()
{
}
return 0;
}
-
-
--- /dev/null
+// { dg-do assemble }
+// Gives ICE 109
+// 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()
+{
+ try {
+ }
+ catch (bad_alloc) { // { dg-error "" }
+ return 1;
+ }
+ return 0;
+}