summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/syntax-err1.C
blob: ce1c9eea5344b9b432dea795a56fdff52e7dd2fe (plain)
1
2
3
4
5
6
7
8
// PR c++/47198
// { dg-options -std=c++0x }

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