blob: 2ef82185b892a65aba32c73a902e33d40bb00567 [file] [log] [blame]
struct A {
A (int, int);
void f ();
};
void f (int a) {
A (a, a).f ();
}