summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/wgsl/associativity.slang3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/wgsl/associativity.slang b/tests/wgsl/associativity.slang
index 3c9ede949..ed0baa3a5 100644
--- a/tests/wgsl/associativity.slang
+++ b/tests/wgsl/associativity.slang
@@ -745,8 +745,7 @@ void computeMain()
nb = input[463];
nc = input[464];
output[208] = uint(na >> nb < nc);
- // error 39999: expected a generic when using '<...>' (found: 'uint')
- // output[209] = uint(na < nb >> nc);
+ output[209] = uint(na < nb >> nc);
na = input[465];
nb = input[466];
nc = input[467];