2016-12-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / error5.C
blobd14a47664b85dfbe1871234ebee238de41b74132
1 // PR c++/13269
2 // { dg-options "-fshow-column" }
4 class Foo { int foo() return 0; } };
6 // { dg-error "30:expected identifier before numeric constant" "identifier" { target *-*-* } 4 }
8 // { dg-error "23:named return values are no longer supported" "named return" { target *-*-* } 4 }
10 // the column number info of this error output is still wrong because the error
11 // message has been generated by cp_parser_error() which does not
12 // necessarily allow accurate column number display. At some point, we will
13 // need make cp_parser_error() report more accurate column numbers.
14 // { dg-error "30:expected '\{' at end of input" "brace" { target *-*-* } 4 }
16 // { dg-error "34:expected ';' after class definition" "semicolon" {target *-*-* } 4 }
18 // { dg-error "35:expected declaration before '\}' token" "declaration" {target *-*-* } 4 }