diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/20040920-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/20040920-1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/20040920-1.c b/gcc/testsuite/gcc.dg/20040920-1.c index 8813963f973..a38ff888930 100644 --- a/gcc/testsuite/gcc.dg/20040920-1.c +++ b/gcc/testsuite/gcc.dg/20040920-1.c @@ -7,6 +7,6 @@ struct a int main(void) { struct a bar; - bob(5); /* { dg-error "called object 'bob\\({anonymous}\\)' is not a function" } */ - bar.foo(); /* { dg-error "called object 'bar.foo\\({anonymous}\\)' is not a function" } */ + bob(5); /* { dg-error "called object 'bob' is not a function" } */ + bar.foo(); /* { dg-error "called object 'bar.foo' is not a function" } */ } |