summaryrefslogtreecommitdiffstats
path: root/tests/bugs/infer-var-type-constant-folding.slang
Commit message (Collapse)AuthorAge
* Infer type while constant folding causes failure (#7090)ArielG-NV2025-05-14
Problem: * Infering type with `let` while using constant-foldable object's means we run in a circular loop of `ensureDecl`. Changes: * If we constant-fold we effectively are ready to check definition. If we are not a constant to fold, we run `setCheckState` after anyways.