Sign in
dawn
/
dawn
/
70d48ee2ec9e1f75507bf5821ed7132c50fbd071
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct_nested_struct.wgsl.expected.ir.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
;
}