Sign in
dawn
/
dawn
/
4d65fc91bb284269dd723fadb8ecead1eb28696c
/
.
/
test
/
tint
/
statements
/
for
/
condition
/
struct_ctor.wgsl.expected.msl
blob: 7ce803aa4b769d557fbd08e7d3b4c4cc76e4751c [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
S
{
int
i
;
};
void
f
()
{
int
i
=
0
;
while
(
true
)
{
S
const
tint_symbol
=
S
{.
i
=
1
};
if
(!((
i
<
tint_symbol
.
i
)))
{
break
;
}
{
}
}
}