Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
koenig11.C
blob: dab853bf0f73d8bbefd1d33018acc01aa5309ba9 [
file
] [
log
] [
blame
]
// Test that we treat unions like other classes in arg-dep lookup.
union
U
{
friend
void
f
(
U
);
};
int
main
()
{
U u
;
f
(
u
);
}