diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/memtemp77.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/memtemp77.C | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp77.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp77.C new file mode 100644 index 000000000..e3ca5298d --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/memtemp77.C @@ -0,0 +1,26 @@ +// { dg-do run } +extern "C" int strcmp(const char*, const char*); + +template <class T> +struct S3 +{ + template <class U> + static const char* h(U); +}; + +template <> +template <> +const char* S3<double>::h(int) { return __PRETTY_FUNCTION__; } + +template <> +template <> +const char* S3<char>::h(int) { return __PRETTY_FUNCTION__; } + +int main() +{ + if (strcmp (S3<double>::h(7), + "static const char* S3<T>::h(U) [with U = int, T = double]") == 0) + return 0; + else + return 1; +} |