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