brintos

brintos / llvm-project-archived public Read only

0
0
Text · 147 B · 3614cc7 Raw
13 lines · c
1struct S0 {2  S0();3  S0(const S0 &) noexcept(false);4  int a;5};6 7struct S {8  void m() {9    __block S0 x, y;10    ^{ (void)x; (void)y; };11  }12};13