2018-08-30 12:18:55 +00:00
|
|
|
//@ run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_variables)]
|
2017-10-21 16:41:27 +00:00
|
|
|
// Tests that binary operators allow subtyping on both the LHS and RHS,
|
2018-02-16 14:56:50 +00:00
|
|
|
// and as such do not introduce unnecessarily strict lifetime constraints.
|
2017-10-21 16:41:27 +00:00
|
|
|
|
|
|
|
use std::ops::Add;
|
|
|
|
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl<'a> Add<&'a Foo> for &'a Foo {
|
|
|
|
type Output = ();
|
|
|
|
fn add(self, rhs: &'a Foo) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn try_to_add(input: &Foo) {
|
|
|
|
let local = Foo;
|
|
|
|
|
|
|
|
// Manual reborrow worked even with invariant trait search.
|
|
|
|
&*input + &local;
|
|
|
|
|
|
|
|
// Direct use of the reference on the LHS requires additional
|
|
|
|
// subtyping before searching (invariantly) for `LHS: Add<RHS>`.
|
|
|
|
input + &local;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|