Sign in
dawn
/
dawn
/
ebdf08dde45995b62001fee326e89cdce1a025c4
/
.
/
test
/
tint
/
shadowing
/
struct
/
let.wgsl.expected.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
;
}