blob: b3176126fdd16f980897f4465cbd0fcb32749d87 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct S {
int m;
uint n;
};
uint f() {
S a = S{};
return a.n;
}