OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / syntax-err1.C
1 // PR c++/47198
2 // { dg-options -std=c++0x }
3
4 struct S
5 {
6   template < int > sometype foo (); // { dg-error "sometype. does not name a type" }
7   S () = default;
8 };