blob: e613ad9e6bac436af24d51fe7a6f73e545d8d738 [file] [log] [blame]
// Build don't link:
// GROUPS passed MI
struct S1 { };
struct S2 : S1 { };
struct S3 : S1 { };
struct S4 : S3, S2 { };
struct S1 *p1;
struct S4 *p4;
void foobar ()
{
p1 = p4; // ERROR - this is illegal// ERROR - .*
}