aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/ctors10.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.law/ctors10.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.law/ctors10.C10
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.law/ctors10.C b/gcc/testsuite/g++.old-deja/g++.law/ctors10.C
index 6520087d52f..4cc20e86cb6 100644
--- a/gcc/testsuite/g++.old-deja/g++.law/ctors10.C
+++ b/gcc/testsuite/g++.old-deja/g++.law/ctors10.C
@@ -6,14 +6,14 @@
// Subject: bug019.cc
// Date: Fri, 5 Feb 93 15:51:42 -0800
-#include <iostream.h>
+#include <iostream>
class Class
{
- class Err : public ostream
+ class Err : public std::ostream
{
public:
- Err(void) : ostream(NULL) { }
+ Err(void) : std::ostream(NULL) { }
~Err(void) { }
};
public:
@@ -22,3 +22,7 @@ public:
private:
char x;
};
+
+
+
+