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