2020-06-08 23:12:01 +00:00
|
|
|
// Test taking the LUB of two function types that are not equatable but where
|
|
|
|
// one is more general than the other. Test the case where the more general type
|
|
|
|
// (`x`) is the second match arm specifically.
|
|
|
|
//
|
2020-06-08 23:22:10 +00:00
|
|
|
// FIXME(#73154) Skip for compare-mode because the pure NLL checker accepts this
|
|
|
|
// test. (Note that it still errors in old-lub-glb-hr-noteq1.rs). What happens
|
|
|
|
// is that, due to the ordering of the match arms, we pick the correct "more
|
|
|
|
// general" fn type, and we ignore the errors from the non-NLL type checker that
|
|
|
|
// requires equality. The NLL type checker only requires a subtyping
|
|
|
|
// relationship, and that holds.
|
2020-06-08 23:12:01 +00:00
|
|
|
//
|
|
|
|
// ignore-compare-mode-nll
|
2021-08-03 16:40:24 +00:00
|
|
|
// ignore-compare-mode-polonius
|
2020-06-08 23:12:01 +00:00
|
|
|
|
|
|
|
fn foo(x: for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8, y: for<'a> fn(&'a u8, &'a u8) -> &'a u8) {
|
|
|
|
// The two types above are not equivalent. With the older LUB/GLB
|
|
|
|
// algorithm, this may have worked (I don't remember), but now it
|
|
|
|
// doesn't because we require equality.
|
|
|
|
let z = match 22 {
|
|
|
|
0 => y,
|
|
|
|
_ => x, //~ ERROR `match` arms have incompatible types
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo_cast(x: for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8, y: for<'a> fn(&'a u8, &'a u8) -> &'a u8) {
|
|
|
|
// But we can *upcast* explicitly the type of `x` and figure
|
|
|
|
// things out:
|
|
|
|
let z = match 22 {
|
|
|
|
0 => x as for<'a> fn(&'a u8, &'a u8) -> &'a u8,
|
|
|
|
_ => y,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|