Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
binop
/
binop-mul-bool.rs
blob: 0b4ed21a12d0085d62bfa251a301b7fcbb3ae2cf [
file
] [
log
] [
blame
] [
edit
]
//@ error-pattern:cannot multiply `bool` by `bool`
fn
main
()
{
let
x
=
true
*
false
;
}