]> git.lizzy.rs Git - rust.git/blob - src/test/ui/arbitrary-self-types-not-object-safe.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / arbitrary-self-types-not-object-safe.rs
1 // Copyright 2017 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 #![feature(arbitrary_self_types)]
11
12 use std::rc::Rc;
13
14 trait Foo {
15     fn foo(self: Rc<Self>) -> usize;
16 }
17
18 trait Bar {
19     fn foo(self: Rc<Self>) -> usize where Self: Sized;
20     fn bar(self: Box<Self>) -> usize;
21 }
22
23 impl Foo for usize {
24     fn foo(self: Rc<Self>) -> usize {
25         *self
26     }
27 }
28
29 impl Bar for usize {
30     fn foo(self: Rc<Self>) -> usize {
31         *self
32     }
33
34     fn bar(self: Box<Self>) -> usize {
35         *self
36     }
37 }
38
39 fn make_foo() {
40     let x = Box::new(5usize) as Box<Foo>;
41     //~^ ERROR E0038
42     //~| ERROR E0038
43 }
44
45 fn make_bar() {
46     let x = Box::new(5usize) as Box<Bar>;
47     x.bar();
48 }
49
50 fn main() {}