You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
// Tests that binary operators allow subtyping on both the LHS and RHS,
12
+
// and as such do not introduce unnecesarily strict lifetime constraints.
13
+
14
+
use std::ops::Add;
15
+
16
+
structFoo;
17
+
18
+
impl<'a>Add<&'aFoo>for&'aFoo{
19
+
typeOutput = ();
20
+
fnadd(self,rhs:&'aFoo){}
21
+
}
22
+
23
+
fntry_to_add(input:&Foo){
24
+
let local = Foo;
25
+
26
+
// Manual reborrow worked even with invariant trait search.
27
+
&*input + &local;
28
+
29
+
// Direct use of the reference on the LHS requires additional
30
+
// subtyping before searching (invariantly) for `LHS: Add<RHS>`.
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
0 commit comments