blob: 6b500df2eb23edce5912a0e524b47fe916735626 [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));
}