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