aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBrendan Kehoe <brendan@gcc.gnu.org>1998-08-18 11:24:24 -0400
committerBrendan Kehoe <brendan@gcc.gnu.org>1998-08-18 11:24:24 -0400
commit074900555d0105069df8bf454e85a5260b694241 (patch)
treed7ddcb38196b5620518f0ff98170063fd6205242 /gcc
parenta5a406af6492a832d56b9cb4e49c1b4d0461381d (diff)
downloadgcc-074900555d0105069df8bf454e85a5260b694241.zip
gcc-074900555d0105069df8bf454e85a5260b694241.tar.gz
gcc-074900555d0105069df8bf454e85a5260b694241.tar.bz2
add another expr/decl ambiguity test
From-SVN: r21827
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/parse5.C25
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/parse5.C b/gcc/testsuite/g++.old-deja/g++.brendan/parse5.C
new file mode 100644
index 0000000..3b311e4
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.brendan/parse5.C
@@ -0,0 +1,25 @@
+// Build don't link:
+
+// this is marked as an expected error because it evidences an
+// ambiguity in the grammar between expressions and declarations.
+// when the parser's been cleaned up or rewritten, the error
+// marker can go away, since it'll no longer occur.
+
+class ptr8
+ {
+public:
+ ptr8(unsigned char *string,int len);
+ };
+
+template <unsigned int S>
+class buf
+ {
+public:
+ buf(const ptr8& aRef);
+ };
+
+int main()
+ {
+ unsigned char b[3];
+ buf<3> b2(ptr8(&b[0],3)); // ERROR -
+ }