diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.other/linkage4.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/linkage4.C | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/linkage4.C b/gcc/testsuite/g++.old-deja/g++.other/linkage4.C new file mode 100644 index 000000000..7531f4516 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.other/linkage4.C @@ -0,0 +1,11 @@ +// { dg-do assemble } +// Origin: Mark Mitchell <mark@codesourcery.com> + +static int strlen (const char*) { return 0; } + +template <int (*)(const char*)> +void f () {} + +// Check that the strlen declaration here is given internal linkage by +// using it as a non-type template argument, and expecting an error. +template void f<strlen>(); // { dg-error "" } no matching template |