Sign in
dawn
/
dawn
/
c3722295278b4decaf22e667247a41b5ce8cf1cf
/
.
/
test
/
tint
/
shadowing
/
function
/
var.wgsl.expected.glsl
blob: 605980911cd3f326837566c2b1d3ffca673e0740 [
file
] [
log
] [
blame
]
#version 310 es
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
unused_entry_point
()
{
return
;
}
struct
a
{
int
a
;
};
void
f
()
{
{
a a_1
=
a
(
0
);
a b
=
a_1
;
}
a a_2
=
a
(
0
);
a b
=
a_2
;
}