1// { dg-do assemble  }
2// { dg-options "-ansi -pedantic-errors -w" }
3// Bug: func is treated as an overloaded function when it isn't.
4
5int *func () { return 0; }
6
7void
8test ()
9{
10  *func;			// { dg-bogus "" } improper overloading
11}
12