rust/tests/ui/mismatched_types/similar_paths_primitive.rs

11 lines
136 B
Rust

#![allow(non_camel_case_types)]
struct bool;
fn foo(_: bool) {}
fn main() {
foo(true);
//~^ ERROR mismatched types [E0308]
}