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
env CUE_EXPERIMENT=evalv3=0 exec cue export env CUE_EXPERIMENT=evalv3=1 exec cue export -- input.cue -- package p #Component: { kind: string output: {} } foo: #Component & { kind: string if kind == "foo" { _hidden: {} } } foo: kind: "foo"
as of `62b21c8c44e84ca6b45224562298b1102b825766:
> env CUE_EXPERIMENT=evalv3=0 > exec cue export [stdout] { "foo": { "kind": "foo", "output": {} } } > env CUE_EXPERIMENT=evalv3=1 > exec cue export [stderr] foo._hidden: field not allowed: ./input.cue:11:12 ./input.cue:11:3 [exit status 1] FAIL: ../repro-evalv3.txtar:5: unexpected command failure
This definitely seems wrong - hidden fields should not be affected by closedness.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
as of `62b21c8c44e84ca6b45224562298b1102b825766:
This definitely seems wrong - hidden fields should not be affected by closedness.
The text was updated successfully, but these errors were encountered: