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