Skip to content

Commit f5551eb

Browse files
aleino-nvcsyonghe
andauthored
Uncomment a previously failing test case (#6303)
This case now parses after the following PR was merged. #6281 Co-authored-by: Yong He <yonghe@outlook.com>
1 parent d00fa5c commit f5551eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/wgsl/associativity.slang

+1-2
Original file line numberDiff line numberDiff line change
@@ -745,8 +745,7 @@ void computeMain()
745745
nb = input[463];
746746
nc = input[464];
747747
output[208] = uint(na >> nb < nc);
748-
// error 39999: expected a generic when using '<...>' (found: 'uint')
749-
// output[209] = uint(na < nb >> nc);
748+
output[209] = uint(na < nb >> nc);
750749
na = input[465];
751750
nb = input[466];
752751
nc = input[467];

0 commit comments

Comments
 (0)