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