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.

22 lines
184 B

// Compile this with:
// g++ -Wall -g -shared -o libtest5-fn-suppr-v0.so test5-fn-suppr-v0.cc
struct S
{
int m1;
S()
: m1()
{}
};
void
bar(S*)
{
}
void
bar(int, S)
{
}