summaryrefslogtreecommitdiffstats
path: root/tests/bugs/gh-4414.slang
blob: 99d53708955d14a3e56236d783c8c4fc89555ff1 (plain)
1
2
3
4
5
6
7
8
9
10
//TEST:SIMPLE(filecheck=CHK):-target hlsl -entry main -stage vertex

void main()
{
  int2x2 a;
  int4 b;

  //CHK-NOT:error 39999: ambiguous call
  b.zw = mul(a, b.yx);
}