brintos

brintos / llvm-project-archived public Read only

0
0
Text · 87 B · a8fb5ce Raw
10 lines · c
1struct Incomplete;2 3struct X : Incomplete {4  X();5};6 7struct Y : X {8  using X::X;9};10