Sign in
dawn
/
tint
/
d1efb5d48cae18c4f051eb1a8bea0a59e13c9761
/
.
/
test
/
identifiers
/
underscore
/
prefix
/
lower
/
let.wgsl
blob: 6ded6208cdbc84d05df7f1187c8a7cbe4571c462 [
file
] [
log
] [
blame
]
let
a
:
i32
=
1
;
let
_a
:
i32
=
2
;
fn f
()
{
let
b
=
a
;
let
_b
=
_a
;
}