]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/issue-20727.rs
Rollup merge of #28991 - goyox86:goyox86/rustfmting-liblog-II, r=alexcrichton
[rust.git] / src / test / auxiliary / issue-20727.rs
1 // Copyright 2015 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 pub trait Deref {
12     type Target: ?Sized;
13
14     fn deref<'a>(&'a self) -> &'a Self::Target;
15 }
16
17 pub trait Add<RHS = Self> {
18     type Output;
19
20     fn add(self, rhs: RHS) -> Self::Output;
21 }
22
23
24 pub trait Bar {}
25 pub trait Deref2 {
26     type Target: Bar;
27
28     fn deref(&self) -> Self::Target;
29 }
30
31 pub trait Index<Idx: ?Sized> {
32     type Output: ?Sized;
33     fn index(&self, index: Idx) -> &Self::Output;
34 }
35
36 pub trait IndexMut<Idx: ?Sized>: Index<Idx> {
37     fn index_mut(&mut self, index: Idx) -> &mut Self::Output;
38 }