From f5551eb946b779eaa8472d8137235e72e05803b0 Mon Sep 17 00:00:00 2001 From: Anders Leino Date: Fri, 7 Feb 2025 08:05:43 +0200 Subject: Uncomment a previously failing test case (#6303) This case now parses after the following PR was merged. https://github.com/shader-slang/slang/pull/6281 Co-authored-by: Yong He --- tests/wgsl/associativity.slang | 3 +-- 1 file changed, 1 insertion(+), 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]; -- cgit v1.2.3