• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Expect 3 errors
2
3const half2x2 testMatrix2x2 = half2x2(1, 2, 3, 4);
4half    testScalar    = half (testMatrix2x2);
5half2   testVec2      = half2(testMatrix2x2);
6half3   testVec3      = half3(testMatrix2x2);
7half4   testVec4      = half4(testMatrix2x2);  // not an error
8
9/*%%*
10'half2x2' is not a valid parameter to 'half' constructor; use '[0][0]' instead
11'half2x2' is not a valid parameter to 'half2' constructor
12'half2x2' is not a valid parameter to 'half3' constructor
13*%%*/
14