rust/src/test/ui/did_you_mean/issue-42764.stderr

19 lines
773 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
--> $DIR/issue-42764.rs:21:43
|
2018-02-22 18:42:32 -06:00
LL | this_function_expects_a_double_option(n);
| ^ expected enum `DoubleOption`, found usize
|
= note: expected type `DoubleOption<_>`
found type `usize`
help: try using a variant of the expected type
|
2018-02-24 17:01:39 -06:00
LL | this_function_expects_a_double_option(DoubleOption::FirstSome(n));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-02-24 17:01:39 -06:00
LL | this_function_expects_a_double_option(DoubleOption::AlternativeSome(n));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0308"