diff options
author | Alexandre Oliva <oliva@dcc.unicamp.br> | 1999-07-13 02:37:16 +0000 |
---|---|---|
committer | Alexandre Oliva <oliva@gcc.gnu.org> | 1999-07-13 02:37:16 +0000 |
commit | 9585b77545eb59a005b60301cc86ebc4697f99fe (patch) | |
tree | 792f210679e30e7f8fb844dd33caf67144e6b191 /gcc | |
parent | a7bfda248d59b760c04e624e376526851eb454ce (diff) | |
download | gcc-9585b77545eb59a005b60301cc86ebc4697f99fe.zip gcc-9585b77545eb59a005b60301cc86ebc4697f99fe.tar.gz gcc-9585b77545eb59a005b60301cc86ebc4697f99fe.tar.bz2 |
* partspec1.C: New test.
From-SVN: r28081
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.oliva/partspec1.C | 20 |
2 files changed, 24 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog index 8cf06bf..19d6035 100644 --- a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog +++ b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog @@ -1,3 +1,7 @@ +1999-07-13 Alexandre Oliva <oliva@dcc.unicamp.br> + + * partspec1.C: New test. + 1999-07-05 Alexandre Oliva <oliva@dcc.unicamp.br> * typename1.C, typename2.C: New tests. diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/partspec1.C b/gcc/testsuite/g++.old-deja/g++.oliva/partspec1.C new file mode 100644 index 0000000..00942c0 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.oliva/partspec1.C @@ -0,0 +1,20 @@ +// Build don't link: + +// Copyright (C) 1999 Free Software Foundation + +// by Alexandre Oliva <oliva@dcc.unicamp.br> +// simplified from bug report by Andrey Slepuhin <pooh@msu.ru> + +template <typename A, int* P> struct X; + +int a; + +template <typename A> +struct X<A,&a> {}; // gets bogus error - candidate - XFAIL *-*-* + +int b; + +template <typename A> +struct X<A,&b> {}; // gets bogus error - candidate - XFAIL *-*-* + +X<int,&a> x; // gets bogus error - ambiguous - XFAIL *-*-* |