aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1999-11-01 23:38:57 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-11-01 23:38:57 +0000
commit3d43c0742f8f99e615eca4d3e19b503665bf377e (patch)
tree536455edce14e5d52ae462f7803f869c006ec316 /gcc
parent67289ea63916a799f9967e52f936b5b9c3cbc5ed (diff)
downloadgcc-3d43c0742f8f99e615eca4d3e19b503665bf377e.zip
gcc-3d43c0742f8f99e615eca4d3e19b503665bf377e.tar.gz
gcc-3d43c0742f8f99e615eca4d3e19b503665bf377e.tar.bz2
Remove duplicate of friend18.C
From-SVN: r30334
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/friend19.C26
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend19.C b/gcc/testsuite/g++.old-deja/g++.pt/friend19.C
deleted file mode 100644
index 998e163..0000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/friend19.C
+++ /dev/null
@@ -1,26 +0,0 @@
-// Build don't link:
-
-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();
-}
-