Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using25.C
blobeb605700d8d07232c5ab6ec770f89de1f501a82f
1 // PR c++/26256
2 // { dg-do run }
4 struct A
6     int next;
7 };
9 struct B
11     int next;
14 struct C : public A, public B
16     using A::next;
19 void foo(C& c) { c.next = 42; }
21 int main()
23     C c;
24     foo (c);
25     c.B::next = 12;
26     if (c.next != 42 || c.A::next != 42 || c.B::next != 12)
27         __builtin_abort();