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