]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-48276.rs
Auto merge of #52553 - Pazzaz:vecdeque-append, r=SimonSapin
[rust.git] / src / test / ui / issues / issue-48276.rs
1 // Copyright 2018 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 // Regression test for issue #48276 - ICE when self type does not match what is
12 // required by a trait and regions are involved.
13
14 trait MyFrom<A> {
15     fn from(a: A) -> Self;
16 }
17
18 struct A;
19
20 impl<'a, 'b> MyFrom<A> for &'a str {
21     fn from(self: &'a Self) -> &'b str {
22         //~^ ERROR: method `from` has a `&self` declaration in the impl, but not in the trait
23         "asdf"
24     }
25 }
26
27 struct B;
28
29 impl From<A> for B {
30     fn from(&self) -> B {
31         //~^ ERROR: method `from` has a `&self` declaration in the impl, but not in the trait
32         B
33     }
34 }
35
36 impl From<A> for &'static str {
37     fn from(&self) -> &'static str {
38         //~^ ERROR: method `from` has a `&self` declaration in the impl, but not in the trait
39         ""
40     }
41 }
42
43 fn main(){}