You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
221 B

// Compile this with:
//
// g++ -shared -g -o libtest35-leaf-v0.so test35-leaf-v0.cc
struct leaf
{
int m0;
};
struct leaf_to_filter
{
int member0;
};
struct C
{
leaf *m0;
leaf_to_filter *m1;
};
void
fn(C&)
{}