Fix unintended compile error in build.zig example #545
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As you can see at https://web.archive.org/web/20250924165935/https://ziglang.org/learn/build-system/#testing, this example failed to compile with:
Despite the fact that this build.zig example apparently should fail to compile (since it contains
build=failat the end), this is clearly not the compile error that was intended. I'm sure of that because this example is followed by the diff that should be enough to fix the compile error:www.ziglang.org/content/en-US/learn/build-system.smd
Lines 240 to 252 in a69386e
Therefore, this commit fixes the above compile error by following the build.zig example with this
skip_foreign_checkspatch applied:www.ziglang.org/zig-code/build-system/unit-testing-skip-foreign/build.zig
Lines 20 to 23 in a69386e