blob: a2351609d9ea35d8e9a0c3842f59e0164e53bb8b [file] [log] [blame]
dan sinclair3505ed42023-11-23 11:45:27 +00001#include <metal_stdlib>
2
3using namespace metal;
4struct S {
5 int m;
6 uint n;
7};
8
9uint f() {
10 S const a = S{};
11 return a.n;
12}
13