aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/template37.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/template37.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/template37.C36
1 files changed, 36 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/template37.C b/gcc/testsuite/g++.old-deja/g++.jason/template37.C
new file mode 100644
index 00000000000..fc237ca439e
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.jason/template37.C
@@ -0,0 +1,36 @@
+// PRMS Id: 9930
+// Test of -fexternal-templates hackery in new template code
+// Special g++ options: -fexternal-templates
+
+ #pragma implementation "foo.hh"
+ #pragma interface "foo.hh"
+
+ template<class T>
+ class ONE
+ {
+ public:
+ static void func();
+ };
+
+ template<class T>
+ void ONE<T>::func()
+ {
+ }
+
+ class ONE<int>
+ {
+ public:
+ static void func();
+ };
+
+ void ONE<int>::func()
+ {
+ }
+
+ main()
+ {
+ ONE<char>::func();
+ ONE<int>::func();
+
+ return 0;
+ }