]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/spec33.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / spec33.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/spec33.C b/gcc/testsuite/g++.old-deja/g++.pt/spec33.C
deleted file mode 100644 (file)
index c795958..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// Build don't run:
-// Origin: James McKelvey <mckelvey@fafnir.com>
-
-class A
-{
-  public:
-  template <class T> A(T x, bool y = false);
-};
-
-template <class T> A::A(T, bool)
-{
-}
-
-template <> A::A(char, bool)
-{
-}
-
-int main()
-{
-  int  b;
-  char c;
-
-  A x(b);
-  A y(c);
-  A z(c, false);
-}