Sign in
dawn
/
dawn
/
b4f6b5c2bada61a31f9d2fc9cda40e4cebe54f4f
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct_nested_struct.wgsl.expected.msl
blob: 92dcfedb46ef0c34f6f07fae443574814fbe854a [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
T
{
float
o
;
uint
p
;
};
struct
S
{
int
m
;
T n
;
};
uint
f
()
{
S
const
a
=
S
{};
return
a
.
n
.
p
;
}