blob: 738a398960ec0a8674cdd8d5fc6d979df39cd01b [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct str {
float4 i;
};
float4 func(thread float4* const pointer) {
return *(pointer);
}
kernel void tint_symbol() {
str F = {};
float4 const r = func(&(F.i));
return;
}