blob: 29df84028b9cf25c78845e782258f7b17609e0f1 [file] [log] [blame]
### Compilation failed:
error: 1: type 'float2x3' is not supported
void f23() { float2x3 x; }
^^^^^^^^
error: 2: type 'float2x4' is not supported
void f24() { float2x4 x; }
^^^^^^^^
error: 3: type 'float3x2' is not supported
void f32() { float3x2 x; }
^^^^^^^^
error: 4: type 'float3x4' is not supported
void f34() { float3x4 x; }
^^^^^^^^
error: 5: type 'float4x2' is not supported
void f42() { float4x2 x; }
^^^^^^^^
error: 6: type 'float4x3' is not supported
void f43() { float4x3 x; }
^^^^^^^^
error: 8: type 'half2x3' is not supported
void h23() { half2x3 x; }
^^^^^^^
error: 9: type 'half2x4' is not supported
void h24() { half2x4 x; }
^^^^^^^
error: 10: type 'half3x2' is not supported
void h32() { half3x2 x; }
^^^^^^^
error: 11: type 'half3x4' is not supported
void h34() { half3x4 x; }
^^^^^^^
error: 12: type 'half4x2' is not supported
void h42() { half4x2 x; }
^^^^^^^
error: 13: type 'half4x3' is not supported
void h43() { half4x3 x; }
^^^^^^^
error: 15: type 'uint' is not supported
void u() { uint x; }
^^^^
error: 16: type 'uint2' is not supported
void u2() { uint2 x; }
^^^^^
error: 17: type 'uint3' is not supported
void u3() { uint3 x; }
^^^^^
error: 18: type 'uint4' is not supported
void u4() { uint4 x; }
^^^^^
error: 20: type 'ushort' is not supported
void us() { ushort x; }
^^^^^^
error: 21: type 'ushort2' is not supported
void us2() { ushort2 x; }
^^^^^^^
error: 22: type 'ushort3' is not supported
void us3() { ushort3 x; }
^^^^^^^
error: 23: type 'ushort4' is not supported
void us4() { ushort4 x; }
^^^^^^^
error: 25: type 'uint4' is not supported
void au4() { uint4 x[2]; }
^^^^^
error: 26: type 'ushort' is not supported
void aus() { ushort x[2]; }
^^^^^^
error: 27: type 'float2x3' is not supported
void af23() { float2x3 x[2]; }
^^^^^^^^
error: 29: type 'half4x2' is not supported
struct Sh42 { half4x2 x; };
^^^^^^^
error: 30: type 'ushort' is not supported
struct Sus { ushort x; };
^^^^^^
error: 31: type 'uint' is not supported
struct Sau { uint x[2]; };
^^^^
error: 33: type 'float2x3' is not supported
void ctor_f23() { float2x3(0); }
^^^^^^^^
error: 34: type 'half4x2' is not supported
void ctor_h42() { half4x2(0); }
^^^^^^^
error: 35: type 'uint' is not supported
void ctor_u() { uint(0); }
^^^^
error: 36: type 'ushort4' is not supported
void ctor_us4() { ushort4(0); }
^^^^^^^
error: 37: type 'ushort' is not supported
void ctor_aus() { ushort[2](0, 0); }
^^^^^^
error: 39: type 'float2x3' is not supported
void access_f23() { float2x3 var; var[0][0]; }
^^^^^^^^
error: 40: type 'half4x2' is not supported
void access_h42() { half4x2 var; var[0][0]; }
^^^^^^^
error: 41: type 'uint' is not supported
void access_u() { uint var; var.x; }
^^^^
error: 42: type 'ushort4' is not supported
void access_us4() { ushort4 var; var.x; }
^^^^^^^
error: 43: type 'ushort' is not supported
void access_aus() { ushort var[2]; var[0].x; }
^^^^^^
36 errors