blob: 1549619ed16267c8859270e810135749d14ec87a [file] [log] [blame]
/* { dg-do compile } */
struct T;
struct S {
void (*bar)(struct S);
};
void bar(struct T t) {} /* { dg-error "" } */
void foo(struct S *s)
{
s->bar = bar;
}