blob: 700f8128a939a8b17a2a7153c58d80f3add6779d [file] [log] [blame]
enum DoubleOption<T> {
FirstSome(T),
AlternativeSome(T),
Nothing,
}
fn this_function_expects_a_double_option<T>(d: DoubleOption<T>) {}
fn main() {
let n: usize = 42;
this_function_expects_a_double_option(n);
//~^ ERROR mismatched types
//~| HELP try using a variant of the expected enum
}
// But don't issue the "try using a variant" help if the one-"variant" ADT is
// actually a one-field struct.
struct Payload;
struct Wrapper { payload: Payload }
struct Context { wrapper: Wrapper }
fn overton() {
let _c = Context { wrapper: Payload{} };
//~^ ERROR mismatched types
}