aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp83.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/memtemp83.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/memtemp83.C19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp83.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp83.C
deleted file mode 100644
index 69ab94820b0..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/memtemp83.C
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link:
-// Origin: Corey Kosak <kosak@cs.cmu.edu>
-
-struct cow_t {
- template<bool Q>
- static void tfunc(cow_t *cowp) {}
-
- void moo() {
- cow_t *cowp;
- tfunc<true>(cowp);
- }
-};
-
-
-int main()
-{
- cow_t *cowp;
- cow_t::tfunc<true>(cowp);
-}