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