Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for previously fixed implicit limit bug (#8070)
FOR loops used in function arguments previously had implicit limits applied to them incorrectly, even though they weren't going to the output. Before #7517, some places suppressed implicit limits by setting `inhibit_implicit_limit`. But it turns out that not all places checked both `implicit_limit` and `inhibit_implicit_limit`, so some places (such as FOR loops) did not have the limit correctly inhibited. In #7517 we got rid of `inhibit_implicit_limit`, which fixed the issue by making everything use one mechanism. This adds a test for the bug that was fixed. We'll backport #7517 and this. Closes #8063.
- Loading branch information