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