brintos

brintos / llvm-project-archived public Read only

0
0
Text · 130 B · 572cea2 Raw
17 lines · c
1// Header for PCH test cxx-using.cpp2 3 4 5 6 7 8struct B {9    void f(char c);10};11 12struct D : B 13{14    using B::f;15    void f(int);16};17