Sign in
dawn
/
tint
/
b4cd255c6ecc8db6d49274b8de378b33c478c629
/
.
/
test
/
identifiers
/
underscore
/
prefix
/
lower
/
struct.wgsl.expected.msl
blob: 32bffa1170577af163ed0738952de4575d6a77b2 [
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
;
}