X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.pt%2Ffriend12.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.pt%2Ffriend12.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=ef9bfc8a02cd1397962005187567d4a78e13a7aa;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend12.C b/gcc/testsuite/g++.old-deja/g++.pt/friend12.C deleted file mode 100644 index ef9bfc8a..00000000 --- a/gcc/testsuite/g++.old-deja/g++.pt/friend12.C +++ /dev/null @@ -1,33 +0,0 @@ -template -class C; - -template -struct S -{ - template - void f(U u1, U u2) {} - - template - void f(U u) - { - C ct; - ct.i = 3; - } -}; - - -template -class C -{ - template - friend void S::f(U); - - int i; -}; - - -int main() -{ - S si; - si.f(3.0); -}