blob: aeecff6c1a9214199f82cf10addc57394f806b10 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct str {
int i;
};
int func(thread int* const pointer) {
return (*pointer);
}
kernel void tint_symbol() {
str F = {};
int const r = func((&F.i));
}