]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/deduct7.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / deduct7.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/deduct7.C b/gcc/testsuite/g++.old-deja/g++.pt/deduct7.C
deleted file mode 100644 (file)
index ec51d30..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Jason Merrill 14 Jun 2001 <jason@redhat.com>
-
-// Test that deduction can add cv-quals to a pointer-to-member type.
-
-struct A;
-int A::* pi;
-
-template <typename T> void f (const T A::*) {}
-
-int main ()
-{
-  f (pi);
-}