summaryrefslogtreecommitdiffstats
path: root/tests/ui/mismatched_types/similar_paths_primitive.stderr
blob: 8a2f73945e84184d0d00e9e1e478279b15631966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
error[E0308]: mismatched types
  --> $DIR/similar_paths_primitive.rs:8:9
   |
LL |     foo(true);
   |     --- ^^^^ expected struct `bool`, found `bool`
   |     |
   |     arguments to this function are incorrect
   |
   = note: bool and struct `bool` have similar names, but are actually distinct types
   = note: bool is a primitive defined by the language
note: struct `bool` is defined in the current crate
  --> $DIR/similar_paths_primitive.rs:3:1
   |
LL | struct bool;
   | ^^^^^^^^^^^
note: function defined here
  --> $DIR/similar_paths_primitive.rs:5:4
   |
LL | fn foo(_: bool) {}
   |    ^^^ -------

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.