You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following, when evaluating data.test.foo, the error raised by evaluation of bar is ignored. Instead, the error manifests differently (incorrect number of arguments passed to count).
package test
import rego.v1
bar :=1 if {
1+"hello"
}
foo :=1 if {
count(bar)
}
The text was updated successfully, but these errors were encountered:
In the following, when evaluating
data.test.foo
, the error raised by evaluation ofbar
is ignored. Instead, the error manifests differently (incorrect number of arguments passed to count).The text was updated successfully, but these errors were encountered: