Sign in
dawn
/
dawn
/
614bebb4e3cc1365e0bbcd810e8d124a5c3079e4
/
.
/
test
/
tint
/
shadowing
/
param
/
let.wgsl.expected.msl
blob: c09cb715cf7b3902dda2047b455b73ce82a2decb [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
void
f
(
int
a
)
{
int
const
a_1
=
a
;
int
const
b
=
a_1
;
}
kernel
void
v
()
{
f
(
1
);
}