aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/lookup/using37.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/lookup/using37.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/lookup/using37.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/lookup/using37.C b/gcc-4.8.1/gcc/testsuite/g++.dg/lookup/using37.C
deleted file mode 100644
index a71206e89..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/lookup/using37.C
+++ /dev/null
@@ -1,22 +0,0 @@
-// PR c++/30195
-// { dg-do run }
-
-template<class T> struct B
-{
- void foo(T) {}
-};
-
-template<class T>
-struct D : B<int>, B<double>
-{
- using B<int>::foo;
- using B<double>::foo;
- void bar() { foo(3); }
-};
-
-int main()
-{
- D<int> x;
- x.bar();
- return 0;
-}