aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C')
-rw-r--r--gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C21
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C b/gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C
new file mode 100644
index 000000000..769363d58
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C
@@ -0,0 +1,21 @@
+// { dg-do run }
+// g++ 1.36.1 bug 891230_01
+
+// g++ gives typedefs which are nested within class declarations a scope
+// which is local to the class declaration itself. This causes examples
+// like the following to get compile-time errors.
+
+// Cfront 2.0 passes this test.
+
+// keywords: typedef, nested types, scope
+
+struct foo {
+
+ typedef foo* foo_p;
+ void member (foo_p);
+};
+
+void foo::member (foo_p p) { // { dg-bogus "" } s
+}
+
+int main () { return 0; }