blob: f0343d0d6fa20551ff83a5d546323f5a73b8628d [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int3 const a = int3(1, 2, 3);
int const b = 0;
int3 const r = (int3(1, 2, 3) / 0);
return;
}