]> git.lizzy.rs Git - rust.git/blob - tests/ui/binop/binop-mul-bool.rs
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / ui / binop / binop-mul-bool.rs
1 // error-pattern:cannot multiply `bool` by `bool`
2
3 fn main() { let x = true * false; }