Sign in
dawn
/
dawn
/
70d48ee2ec9e1f75507bf5821ed7132c50fbd071
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct_with_vector.wgsl.expected.msl
blob: f2f3b8027a7c0d9ffb57664700561da28ef7f4d6 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
S
{
int
m
;
uint3 n
;
};
uint
f
()
{
S
const
a
=
S
{};
return
a
.
n
[
2
];
}