Sign in
dawn
/
dawn
/
3ddc07a18b8a22570ffe1e93f0a11d036462c192
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct_nested_struct.wgsl.expected.msl
blob: 339343e838f53c242e0ad87c640927d1b334fb8b [
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
;
}