aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/template/local3.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/template/local3.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/template/local3.C14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/template/local3.C b/gcc-4.8.1/gcc/testsuite/g++.dg/template/local3.C
deleted file mode 100644
index 5a01a4495..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/template/local3.C
+++ /dev/null
@@ -1,14 +0,0 @@
- template<class T>
- void f(const T&)
- {
- struct B {
-
- void g (T);
- };
- B b;
- }
- void g()
- {
- f(42);
- }
-