921e5a0eb4
From-SVN: r14840
12 lines
216 B
C
12 lines
216 B
C
// Bug: this code causes an internal compiler error 4.
|
|
|
|
void f (char *);
|
|
void f (int);
|
|
struct A {
|
|
void f ();
|
|
void f (int);
|
|
void g () {
|
|
void (*p)(char *) = f; // ERROR - no matching function in scope
|
|
}
|
|
};
|