blob: 28df296595d30fc668487d303e33b9adb71ab5a5 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void f() {
uint v = (1u + 2u);
uint2 v2 = uint2(v);
uint3 v3 = uint3(v);
uint4 v4 = uint4(v);
}