nektro / ziglint

A linting suite for Zig
MIT License
87 stars 3 forks source link

new rule: passing `null`/`true`/`false` literal to `if` #17

Open nektro opened 2 years ago

nektro commented 2 years ago
test {
    if (null) |_| @compileError("unreachable");
}
./test.zig:2:9: error: passing literal 'null' to if statement