diff options
author | YamaArashi <shadow962@live.com> | 2016-01-06 01:47:28 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-06 01:47:28 -0800 |
commit | be8b04496302184c6e8f04d6179f9c3afc50aeb6 (patch) | |
tree | 726e2468c0c07add773c0dbd86ab6386844259ae /gcc/testsuite/g++.old-deja/g++.brendan/parse5.C |
initial commit
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/parse5.C')
-rwxr-xr-x | gcc/testsuite/g++.old-deja/g++.brendan/parse5.C | 25 |
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 100755 index 0000000..81a5fe6 --- /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)); // gets bogus error - XFAIL *-*-* + } |