1 // PR c++/13269
2 // { dg-options "-fshow-column" }
3 // { dg-additional-options "-Wno-return-type" }
4 
5 class Foo { int foo() return 0; } };
6 
7 // { dg-error "30:expected identifier before numeric constant" "identifier" { target *-*-* } 5 }
8 
9 // { dg-error "23:named return values are no longer supported" "named return" { target *-*-* } 5 }
10 
11 // the column number info of this error output is still wrong because the error
12 // message has been generated by cp_parser_error() which does not
13 // necessarily allow accurate column number display. At some point, we will
14 // need make cp_parser_error() report more accurate column numbers.
15 // { dg-error "30:expected '\{' at end of input" "brace" { target *-*-* } 5 }
16 
17 // { dg-error "34:expected ';' after class definition" "semicolon" {target *-*-* } 5 }
18 
19 // { dg-error "35:expected declaration before '\}' token" "declaration" {target *-*-* } 5 }
20