brintos

brintos / llvm-project-archived public Read only

0
0
Text · 162 B · e64e192 Raw
15 lines · c
1#pragma clang system_header2 3namespace sys {4 5struct Base {6  virtual void publicF();7};8 9struct Derived: public Base {10private:11  void publicF() override;12};13 14}15