]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/object-safety-mentions-Self.rs
Make RFC 1214 warnings into errors, and rip out the "warn or err"
[rust.git] / src / test / compile-fail / object-safety-mentions-Self.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 // Check that we correctly prevent users from making trait objects
12 // form traits that make use of `Self` in an argument or return
13 // position, unless `where Self : Sized` is present..
14
15 trait Bar {
16     fn bar(&self, x: &Self);
17 }
18
19 trait Baz {
20     fn bar(&self) -> Self;
21 }
22
23 trait Quux {
24     fn get(&self, s: &Self) -> Self where Self : Sized;
25 }
26
27 fn make_bar<T:Bar>(t: &T) -> &Bar {
28         //~^ ERROR E0038
29         //~| NOTE method `bar` references the `Self` type in its arguments or return type
30     loop { }
31 }
32
33 fn make_baz<T:Baz>(t: &T) -> &Baz {
34         //~^ ERROR E0038
35         //~| NOTE method `bar` references the `Self` type in its arguments or return type
36     t
37 }
38
39 fn make_quux<T:Quux>(t: &T) -> &Quux {
40     t
41 }
42
43 fn make_quux_explicit<T:Quux>(t: &T) -> &Quux {
44     t as &Quux
45 }
46
47 fn main() {
48 }