Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / g++.dg / cpp0x / decltype48.C
index 5aa0174..29ce815 100644 (file)
@@ -6,8 +6,8 @@ template<typename T> struct baz { };
 template<typename T> T bar();
 
 template<typename T, typename ... U>
-baz<decltype(bar<Int>(bar<U>() ...))>
-foo();                         // { dg-error "no match" }
+baz<decltype(bar<Int>(bar<U>() ...))> // { dg-error "no match" }
+foo();
 
 int main()
 {