]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/crash61.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / crash61.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash61.C b/gcc/testsuite/g++.old-deja/g++.pt/crash61.C
deleted file mode 100644 (file)
index 30312c7..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// Build don't link:
-// Source: Neil Booth, from PR # 106. 4 Dec 2000.
-
-template <bool b> class bar
-{
-};
-
-class A_a
-{
-  public:
-   static const bool b = true;
-};
-
-class B_b
-{
-  public:
-   static const bool b = false;
-};
-
-template <class A, class B> class foo
-{
-};
-
-template <class A, class B>
-bar<(A::b || B::b)> do_funky(const foo<A, B>&);
-
-int main()
-{
-  bar<true> a_bar = do_funky(foo<A_a, B_b>());
-}