diff options
Diffstat (limited to 'gcc_arm/testsuite/g++.old-deja/g++.pt/explicit34.C')
-rwxr-xr-x | gcc_arm/testsuite/g++.old-deja/g++.pt/explicit34.C | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc_arm/testsuite/g++.old-deja/g++.pt/explicit34.C b/gcc_arm/testsuite/g++.old-deja/g++.pt/explicit34.C new file mode 100755 index 0000000..0aede38 --- /dev/null +++ b/gcc_arm/testsuite/g++.old-deja/g++.pt/explicit34.C @@ -0,0 +1,10 @@ +// Build don't link: +// GROUPS passed templates +template <class T> +void foo(T t); + +template <> +void foo(int) {}; // ERROR - previously defined here. + +template <> +void foo<int>(int) {} // ERROR - duplicate specialization. |