diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/rfg5.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.jason/rfg5.C | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/rfg5.C b/gcc/testsuite/g++.old-deja/g++.jason/rfg5.C new file mode 100644 index 000000000..11ee9c035 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.jason/rfg5.C @@ -0,0 +1,11 @@ +// { dg-do assemble } +// { dg-options "-ansi -pedantic-errors -w" } +// Bug: func is treated as an overloaded function when it isn't. + +int *func () { return 0; } + +void +test () +{ + *func; // { dg-bogus "" } improper overloading +} |