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