blob: e32bf5c12dafb8082f0a79cc441d6928f8b3dc50 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
float3 const a = float3(1.0f, 2.0f, 3.0f);
float const b = 0.0f;
float3 const r = (a / b);
}