blob: a01b574094aa96c7f7be741d93f9b6c465fecfa8 [file] [log] [blame]
// Compile this with:
// g++ -g -Wall -c test29-finer-redundancy-marking-v1.cc
struct base
{
int m0;
char m1;
};
struct inherited : public base
{
int m0;
};
void
bar(base&)
{}
void
baz(base)
{}
void
foo(inherited*)
{}