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