summaryrefslogtreecommitdiffstats
path: root/test/PCH/block-helpers.h
blob: 3614cc7be93a060bed25eb6c474d75b00542b422 (plain)
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; };
  }
};