]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/method-recursive-blanket-impl.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / run-pass / method-recursive-blanket-impl.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // 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 // Test that we don't trigger on the blanket impl for all `&'a T` but
12 // rather keep autoderefing and trigger on the underlying impl.  To
13 // know not to stop at the blanket, we have to recursively evaluate
14 // the `T:Foo` bound.
15
16 use std::marker::Sized;
17
18 // Note: this must be generic for the problem to show up
19 trait Foo<A> {
20     fn foo(&self, a: A);
21 }
22
23 impl Foo<u8> for [u8] {
24     fn foo(&self, a: u8) {}
25 }
26
27 impl<'a, A, T> Foo<A> for &'a T where T: Foo<A> {
28     fn foo(&self, a: A) {
29         Foo::foo(*self, a)
30     }
31 }
32
33 trait Bar {
34     fn foo(&self);
35 }
36
37 struct MyType;
38
39 impl Bar for MyType {
40     fn foo(&self) {}
41 }
42
43 fn main() {
44     let mut m = MyType;
45     (&mut m).foo()
46 }