]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp83.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp83.C
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 (file)
index 69ab948..0000000
+++ /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);
-}