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