Files
vercel-labs--zerolang/examples/error-tour/README.md
T
wehub-resource-sync e7738de6d2
CI / Deep Native Runtime Cases (1/6) (push) Has been skipped
CI / Native Preflight (push) Failing after 1s
CI / Native Runtime Cases (1/2) (push) Failing after 0s
CI / Native Runtime Cases (2/2) (push) Failing after 1s
CI / Native Metadata Reports (push) Failing after 0s
CI / Native Direct Backend Artifacts (push) Failing after 0s
CI / Native Sanitizer Smoke (push) Failing after 1s
CI / Command Contract Snapshots (push) Failing after 1s
CI / Deep Conformance Suite (push) Has been skipped
CI / Graph Build Perf (push) Failing after 1s
CI / Deep Native Preflight (push) Has been skipped
CI / Deep Native Runtime Cases (2/6) (push) Has been skipped
CI / Deep Native Runtime Cases (3/6) (push) Has been skipped
CI / Conformance Suite (push) Failing after 1s
CI / Workspace Checks (push) Failing after 0s
CI / Deep Native Runtime Cases (5/6) (push) Has been skipped
CI / Deep Native Runtime Cases (6/6) (push) Has been skipped
CI / Deep Native Runtime Cases (4/6) (push) Has been skipped
CI / Deep Graph Build Perf (push) Has been skipped
chore: import upstream snapshot with attribution
2026-07-13 12:29:30 +08:00

67 lines
1.1 KiB
Markdown

# Error Tour
These examples are intentionally copyable diagnostics and repairs for the current compiler slice. They point at real fixtures so docs, tests, and agent guidance stay aligned.
## Hosted Fs On A Non-Host Target
Bad:
```sh
bin/zero check --json --target linux-musl-x64 conformance/common/fail/unsupported-target-feature.graph
```
Good:
```sh
bin/zero build --target linux-musl-x64 examples/memory-package --out .zero/out/memory-package
```
## Immutable Storage Passed To A Mutable Api
Bad:
```sh
bin/zero explain TYP009
```
Good:
```sh
bin/zero check conformance/native/pass/std-mem-copy-fill.graph
```
## Missing Std Fs Error Name
Bad:
```sh
bin/zero explain ERR002
```
Good:
```sh
bin/zero check conformance/native/pass/std-fs-fallible-resources.graph
```
## Unchecked Named-Error Std Fs Call
Bad:
```sh
bin/zero explain ERR003
```
Good:
```sh
bin/zero check conformance/native/pass/std-fs-fallible-resources.graph
```
## Inspect Repairs
```sh
bin/zero explain TAR002
bin/zero fix --plan --json --target linux-musl-x64 conformance/common/fail/unsupported-target-feature.graph
```