Sign in
dawn
/
dawn
/
fd22bd69eb33bb2fcfd2bb5cd5dacfef3cb345cc
/
.
/
test
/
tint
/
statements
/
for
/
continuing
/
struct_ctor.wgsl.expected.msl
blob: fd9b90b6314fbbb48aa4630187bdf3c7b5cb5c06 [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
S
{
int
i
;
};
void
f
()
{
for
(
int
i
=
0
;
false
;
i
=
as_type
<int>
((
as_type
<uint>
(
i
)
+
as_type
<uint>
(
1
))))
{
}
}