blob: f36ba7e93c743ed97e27dc4f392fe0112cbd44ee [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;
}