aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/syntax-err1.C
blob: 5f5a236a5cd4d965cde5ea34932df1dd1af65398 (plain)
1
2
3
4
5
6
7
8
// PR c++/47198
// { dg-do compile { target c++11 } }

struct S
{
  template < int > sometype foo (); // { dg-error "sometype. does not name a type" }
  S () = default;
};