Sign in
llvm
/
clang
/
943e5a44883539848588e33bffbe2a1773dc4b43
/
.
/
test
/
PCH
/
block-helpers.h
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
;
};
}
};