summaryrefslogtreecommitdiffstats
path: root/tests/ui/mismatched_types/issue-35030.stderr
blob: de4e067fead4cce20007ef8415535eb42c1dba5d (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
25
26
error[E0308]: mismatched types
  --> $DIR/issue-35030.rs:9:14
   |
LL | impl<bool> Parser<bool> for bool {
   |      ---- this type parameter
LL |     fn parse(text: &str) -> Option<bool> {
LL |         Some(true)
   |         ---- ^^^^ expected type parameter `bool`, found `bool`
   |         |
   |         arguments to this enum variant are incorrect
   |
   = note: expected type parameter `bool` (type parameter `bool`)
                        found type `bool` (`bool`)
help: the type constructed contains `bool` due to the type of the argument passed
  --> $DIR/issue-35030.rs:9:9
   |
LL |         Some(true)
   |         ^^^^^----^
   |              |
   |              this argument influences the type of `Some`
note: tuple variant defined here
  --> $SRC_DIR/core/src/option.rs:LL:COL

error: aborting due to previous error

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