Sign in
dawn
/
tint.git
/
a2f4134c560115523cf8a83ef3a73eb2405b8a30
/
.
/
test
/
identifiers
/
underscore
/
prefix
/
upper
/
struct.wgsl
blob: 0afc82429298b495b899395e0dc28db181d67154 [
file
]
struct
A
{
B
:
i32
;
};
struct
_A
{
_B
:
i32
;
};
fn f
()
{
let
c
=
_A
();
let
d
=
c
.
_B
;
}