Sign in
dawn
/
dawn
/
d257e287929813fae395a2d6766fe305d883ce1e
/
.
/
test
/
tint
/
statements
/
for
/
continuing
/
struct_ctor.wgsl.expected.msl
blob: 353f1ff31989b9a4f9b9574ab6ad1df7de876691 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
S
{
int
i
;
};
void
f
()
{
{
int
i
=
0
;
while
(
true
)
{
if
(
true
)
{
break
;
}
{
}
{
S
const
tint_symbol
=
S
{.
i
=
1
};
i
=
as_type
<int>
((
as_type
<uint>
(
i
)
+
as_type
<uint>
(
tint_symbol
.
i
)));
}
}
}
}