diff options
| author | Anders Leino <aleino@nvidia.com> | 2025-02-07 08:05:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-06 22:05:43 -0800 |
| commit | f5551eb946b779eaa8472d8137235e72e05803b0 (patch) | |
| tree | 0873c56d8d4d3da156f744406a54245fa9d48cb4 /tests | |
| parent | d00fa5ced87d85aa25c485fde05a94bcfc9fa743 (diff) | |
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 <yonghe@outlook.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/wgsl/associativity.slang | 3 |
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]; |
