• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Expect 3 errors
2
3const half2x2 testMatrix2x2 = half2x2(1, 2, 3, 4);
4int    testScalar    = int (testMatrix2x2);
5int2   testVec2      = int2(testMatrix2x2);
6int3   testVec3      = int3(testMatrix2x2);
7int4   testVec4      = int4(testMatrix2x2);  // not an error
8