blob: 50f4c9f9d3078c953eb3b2345a4de362bf67c135 [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);
}