summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/similar_paths_primitive.rs
blob: 8f5b7cce46908abcdb36141f672126a73e01862d (plain)
1
2
3
4
5
6
7
8
9
10
#![allow(non_camel_case_types)]

struct bool;

fn foo(_: bool) {}

fn main() {
    foo(true);
    //~^ ERROR mismatched types [E0308]
}