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