summaryrefslogtreecommitdiffstats
path: root/tests/ui/argument-suggestions/issue-112507.stderr
blob: 17bde4d974338c5535591dd45a76a9e7afed9bfa (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
27
error[E0061]: this enum variant takes 1 argument but 4 arguments were supplied
  --> $DIR/issue-112507.rs:6:14
   |
LL |     let _a = Value::Float(
   |              ^^^^^^^^^^^^
LL |         0,
   |         - unexpected argument of type `{integer}`
LL |         None,
LL |         None,
   |         ---- unexpected argument of type `Option<_>`
LL |         0,
   |         - unexpected argument of type `{integer}`
   |
note: tuple variant defined here
  --> $DIR/issue-112507.rs:2:5
   |
LL |     Float(Option<f64>),
   |     ^^^^^
help: remove the extra arguments
   |
LL ~         ,
LL ~         None);
   |

error: aborting due to 1 previous error

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