OSDN Git Service

2009-09-01 Diego Novillo <dnovillo@google.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / pr35240.C
index de82897..1972cf7 100644 (file)
@@ -4,9 +4,9 @@
 
 template<int> struct A {};
 
-template<int N> A<sizeof(new int[N][N])> foo();
+template<int N> A<sizeof(new int[N][N])> foo();        // { dg-message "unimplemented" }
 
 void bar()
 {
-  foo<1>();    // { dg-message "unimplemented" }
+  foo<1>();
 }