Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The go compiler treats calls to `bazel.BuiltWithBazel()` as a compile-time constant. Therefore, ```go if !bazel.BuiltWithBazel() { skip.XXX() } ``` is considered to always terminate execution (because `skip` does its job by raising a panic), and any code coming after that is treated as dead/unreachable. Release note: None
- Loading branch information