1// Bug: func is treated as an overloaded function when it isn't.
2// Build don't link:
3// Special g++ Options: -ansi -pedantic-errors -w
4
5int *func () { return 0; }
6
7void
8test ()
9{
10  *func;			// gets bogus error - improper overloading
11}
12