* g++.dg/cpp0x/fntmpdefarg2a.C: Move expected warning.
authorJason Merrill <jason@gcc.gnu.org>
Tue, 28 Nov 2017 18:09:15 +0000 (13:09 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 28 Nov 2017 18:09:15 +0000 (13:09 -0500)
From-SVN: r255210

gcc/testsuite/g++.dg/cpp0x/fntmpdefarg2a.C

index 49c1e0557e0c1ff32c1d614540065ca438c6389e..c5713361a4815d277e9f38c5d6d8449cfdbb06e3 100644 (file)
@@ -5,11 +5,11 @@
 struct B { };
 struct D : B { };
 struct A {
-  template<typename T = void> operator D&(); // { dg-message "template conversion" }
+  template<typename T = void> operator D&();
   operator long();
 };
 
-template <> A::operator D&();
+template <> A::operator D&(); // { dg-message "template conversion" }
 
 void f(long);
 void f(B&);