1#include <metal_stdlib>
2
3using namespace metal;
4void f() {
5  uint2 v2 = uint2(1u);
6  uint3 v3 = uint3(1u);
7  uint4 v4 = uint4(1u);
8}
9
10