]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/object-safety-supertrait-mentions-Self.rs
Changed E0038 error message in test to comply with new message
[rust.git] / src / test / compile-fail / object-safety-supertrait-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 position.
13
14 trait Bar<T> {
15     fn bar(&self, x: &T);
16 }
17
18 trait Baz : Bar<Self> {
19 }
20
21 fn make_bar<T:Bar<u32>>(t: &T) -> &Bar<u32> {
22     t
23 }
24
25 fn make_baz<T:Baz>(t: &T) -> &Baz {
26     //~^ ERROR E0038
27     //~| NOTE the trait cannot use `Self` as a type parameter in the supertraits or where-clauses
28     //~| NOTE the trait `Baz` cannot be made into an object
29     t
30 }
31
32 fn main() {
33 }