Sign in
dawn
/
dawn
/
a4d22f2464aeb5c8271e915664bdb9910fcaf2df
/
.
/
test
/
tint
/
shadowing
/
struct
/
let.wgsl.expected.msl
blob: 8225746ad66bc3ea14d3538f4e8b356ada6f26f0 [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
a
{
int
a
;
};
kernel
void
f
()
{
a
const
a_1
=
a
{};
a
const
b
=
a_1
;
a
const
a_2
=
a
{};
a
const
b_1
=
a_2
;
}