Sign in
dawn
/
dawn
/
67cf9789f07d0ebc8c694f7fe8f09b9fed6e8c73
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct.wgsl.expected.msl
blob: a2351609d9ea35d8e9a0c3842f59e0164e53bb8b [
file
] [
log
] [
blame
]
dan sinclair
3505ed4
2023-11-23 11:45:27 +0000
[
diff
] [
blame
]
1
#include
<metal_stdlib>
2
3
using
namespace
metal
;
4
struct
S
{
5
int
m
;
6
uint
n
;
7
};
8
9
uint
f
()
{
10
S
const
a
=
S
{};
11
return
a
.
n
;
12
}
13