When running `readability-implicit-bool-conversion` on this code we get an invalid fix. ``` int main() { bool bar = true ? 1 : false; } ``` Suggested fix: ``` int main() { bool bar = true ? 1 : 0 != 0; } ``` godbolt: https://godbolt.org/z/vPj5exrTv