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);
}