blob: 470e036a022692108109cb11e81d593d57e6bb3c [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int const a = 1;
int const b = 2;
int const r = as_type<int>((as_type<uint>(1) + as_type<uint>(2)));
return;
}