blob: a441b1862268e518e1777ee270bb325d17fafe86 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct a {
int b;
};
struct a__ {
int b__;
};
kernel void f(device int* tint_symbol [[buffer(0)]]) {
a__ const c = a__{};
int const d = c.b__;
*(tint_symbol) = as_type<int>((as_type<uint>(c.b__) + as_type<uint>(d)));
return;
}