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