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