Sign in
dawn
/
tint
/
6bdbc4a6dfdc95a9479e4ebccc9f4c02e614fdb1
/
.
/
test
/
tint
/
identifiers
/
underscore
/
prefix
/
lower
/
struct.wgsl.expected.msl
blob: 72759ea544fa8de31993f1bb3d1cd686ea8feabd [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
a
{
int
b
;
};
struct
_a
{
int
_b
;
};
void
f
()
{
_a
const
c
=
{};
int
const
d
=
c
.
_b
;
}