diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/friend14.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/friend14.C | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend14.C b/gcc/testsuite/g++.old-deja/g++.pt/friend14.C new file mode 100644 index 000000000..69491fadf --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/friend14.C @@ -0,0 +1,25 @@ +// { dg-do assemble } + +template <class U> +class S1 +{ + template <class T> + friend class S2; + + static int i; +}; + + +template <class T> +class S2 +{ +public: + static void f() { S1<T>::i = 3; } +}; + + +void g() +{ + S2<double>::f(); + S2<long>::f(); +} |