blob: 7e9738a60021ed60cbd772fe46e789d1adf94648 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
uint const a = 1u;
uint const b = 2u;
uint const r = (a * b);
return;
}