We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-- == -- entry: bar -- script input { foo 10 } type bools [n] = #foo [n]bool entry foo (n: i64) : {x:[n]bool,y:bool} = {x=replicate n true,y=false} entry bar [m] (b: {x:[m]bool,y:bool}) : bool = b.y
This fails with:
Entry point: bar; dataset: foo 10i32: Expected value of type: {x: [m]bool, y: bool} But got value of type: {x: [n]bool, y: bool}
We have some code that sanitises sizes when constructing opaque entry point types, but clearly it is incomplete.
The text was updated successfully, but these errors were encountered:
bd490f7
No branches or pull requests
This fails with:
We have some code that sanitises sizes when constructing opaque entry point types, but clearly it is incomplete.
The text was updated successfully, but these errors were encountered: