blob: 22403651d50024e2eb4107527c704fba613151d6 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
int func(int value, thread int* const pointer) {
return (value + (*pointer));
}
kernel void tint_symbol() {
int i = 123;
int const r = func(i, (&i));
}