aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@dcc.unicamp.br>1999-07-05 09:36:05 +0000
committerAlexandre Oliva <oliva@gcc.gnu.org>1999-07-05 09:36:05 +0000
commitaf076391718fc76aa651c641e67663f8e295b395 (patch)
tree90455697dee83b8009df853c84ea7e631207177e /gcc
parent62b10bbc331241e7ceebffb7ef9bfc80884f53d5 (diff)
downloadgcc-af076391718fc76aa651c641e67663f8e295b395.zip
gcc-af076391718fc76aa651c641e67663f8e295b395.tar.gz
gcc-af076391718fc76aa651c641e67663f8e295b395.tar.bz2
* typename1.C, typename2.C: New tests.
From-SVN: r27945
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog2
-rw-r--r--gcc/testsuite/g++.old-deja/g++.oliva/typename1.C19
-rw-r--r--gcc/testsuite/g++.old-deja/g++.oliva/typename2.C28
3 files changed, 49 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
index a1a53c4..8cf06bf 100644
--- a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
+++ b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
@@ -1,5 +1,7 @@
1999-07-05 Alexandre Oliva <oliva@dcc.unicamp.br>
+ * typename1.C, typename2.C: New tests.
+
* template3.C: Fixed.
* ns3.C: New test.
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/typename1.C b/gcc/testsuite/g++.old-deja/g++.oliva/typename1.C
new file mode 100644
index 0000000..af3d658
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.oliva/typename1.C
@@ -0,0 +1,19 @@
+// Build don't link:
+
+// Copyright (C) 1999 Free Software Foundation
+
+// by Alexandre Oliva <oliva@dcc.unicamp.br>
+// based on bug report by Nick Rasmussen <nick@jive.org>
+
+// crash test - XFAIL *-*-*
+
+template <class T> struct foo;
+
+template <class T> struct bar {
+ typedef int foo;
+};
+
+template <class T> struct baz {
+ typedef bar<T>::foo foo; // ERROR - missing typename
+ void m(foo);
+};
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/typename2.C b/gcc/testsuite/g++.old-deja/g++.oliva/typename2.C
new file mode 100644
index 0000000..f50ef48
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.oliva/typename2.C
@@ -0,0 +1,28 @@
+// Build don't link:
+// Special g++ Options:
+
+// Copyright (C) 1999 Free Software Foundation
+
+// by Alexandre Oliva <oliva@dcc.unicamp.br>
+// based on bug report by Nick Rasmussen <nick@jive.org>
+
+// This is slightly different from typename1.C. This one tests
+// whether the implicit typename extension works. gcc 2.95 reports:
+
+// warning: lookup of `foo' finds `struct foo'
+// warning: instead of `baz<T>::foo' from dependent base class
+// warning: (use `typename baz::foo' if that's what you meant)
+
+// But baz<T>::foo is not a base class, and `foo' should have been
+// found in baz's scope.
+
+struct foo;
+
+template <class T> struct bar {
+ typedef int foo;
+};
+
+template <class T> struct baz {
+ typedef bar<T>::foo foo; // ERROR - implicit typename - XFAIL *-*-*
+ void m(foo); // gets bogus error - dependent base class - XFAIL *-*-*
+};