diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/explicit73.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/explicit73.C | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit73.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit73.C new file mode 100644 index 000000000..1d83e3468 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/explicit73.C @@ -0,0 +1,15 @@ +// { dg-do assemble } + +// by Alexandre Oliva <oliva@dcc.unicamp.br> + +// According to [temp.expl.spec]/2, a template explicit specialization +// must be declared in the namespace that contains the declaration of +// the template + +namespace N { + template <class T> class foo; // { dg-error "" } referenced below +} + +using namespace N; + +template <> class foo<void>; // { dg-error "" } invalid specialization |