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