-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
topdown: move arg count below ir.Empty() (#3502)
...to avoid a panic at run time. Fixes #3501. Signed-off-by: Stephan Renatus <[email protected]>
- Loading branch information
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
test/cases/testdata/functions/test-functions-unused-arg.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cases: | ||
- data: | ||
modules: | ||
- | | ||
package p | ||
f(x) { | ||
r = input.that_is_not_there | ||
} | ||
note: basic call | ||
query: data.p.f(1) | ||
want_result: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters