block-helpers.h 147 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 struct S0 { S0(); S0(const S0 &) noexcept(false); int a; }; struct S { void m() { __block S0 x, y; ^{ (void)x; (void)y; }; } };