blob: 3614cc7be93a060bed25eb6c474d75b00542b422 [file] [log] [blame]
struct S0 {
S0();
S0(const S0 &) noexcept(false);
int a;
};
struct S {
void m() {
__block S0 x, y;
^{ (void)x; (void)y; };
}
};