* ru.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / koenig10.C
blobf2fce9cf74f62063c07a41bc84b97858c3f240e6
1 // Test for proper handling of class-scope enums.
3 struct A
5   enum E { e };
6   friend void f (E);
7 };
9 int main()
11   f(A::e);