blob: 28120e4d3a48463c9b6310f72d421cbd5f78a109 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
int f(int a, int b, int c) {
return ((a * b) + c);
}
kernel void tint_symbol() {
int const v = f(1, 2, 3);
int const v_1 = f(4, 5, 6);
}