]> git.lizzy.rs Git - rust.git/blob - src/test/ui/did_you_mean/issue-42764.stderr
Fix test
[rust.git] / src / test / ui / did_you_mean / issue-42764.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-42764.rs:21:43
3    |
4 21 |     this_function_expects_a_double_option(n);
5    |                                           ^ expected enum `DoubleOption`, found usize
6    |
7    = note: expected type `DoubleOption<_>`
8               found type `usize`
9 help: perhaps you meant to use a variant of the expected type
10    |
11 21 |     this_function_expects_a_double_option(DoubleOption::FirstSome(n));
12    |                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^
13 21 |     this_function_expects_a_double_option(DoubleOption::AlternativeSome(n));
14    |                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15
16 error: aborting due to previous error
17