Sign in
dawn
/
tint
/
b4cd255c6ecc8db6d49274b8de378b33c478c629
/
.
/
test
/
identifiers
/
underscore
/
prefix
/
lower
/
struct.wgsl
blob: 5b03cd75dca7f796dbe548f6702f810629546c0f [
file
] [
log
] [
blame
]
struct
a
{
b
:
i32
;
};
struct
_a
{
_b
:
i32
;
};
fn f
()
{
let
c
=
_a
();
let
d
=
c
.
_b
;
}