* fi.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using24.C
blob4413be1f0322c0c4588ecd90915ceb86fa239bba
1 // PR c++/26256
2 // { dg-do compile }
4 struct A { int next; };
5 struct B { int next; };
6 struct C : B { using B::next; };
8 struct D : A, C
10    using C::next;
11    void f() { next = 1; }