summary refs log tree commit diff
path: root/src/test/compile-fail/binop-mul-bool.rs
blob: 7c912f58d1e6893450a952a00eda92050299d162 (plain)
1
2
3
// error-pattern:* cannot be applied to type `bool`

fn main() { let x = true * false; }