Sign in
dawn
/
dawn
/
bbd53eaa2eb7b4be1cfaffc37ae35ab8d2c7111f
/
.
/
test
/
tint
/
shadowing
/
function
/
var.wgsl.expected.ir.msl
blob: 50fb1752f65d876b6c571501f182c1e59f7c1bc7 [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
a
{
int
a
;
};
void
f
()
{
a a_1
=
a
{};
a b
=
a_1
;
a a_2
=
a
{};
a b_1
=
a_2
;
}