blob: 2523e0a7dd5f75f64a58077c5421c58df694e28d [file] [log] [blame]
// Test that anonymous unions work with explicit scope.
static union
{
int i;
};
int main()
{
return ::i;
}