]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/cgu_export_trait_method.rs
Implement the translation item collector.
[rust.git] / src / test / auxiliary / cgu_export_trait_method.rs
1 // Copyright 2012-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 #![crate_type = "lib"]
12
13 pub trait Trait : Sized {
14     fn without_self() -> u32;
15     fn without_self_default() -> u32 { 0 }
16
17     fn with_default_impl(self) -> Self { self }
18     fn with_default_impl_generic<T>(self, x: T) -> (Self, T) { (self, x) }
19
20     fn without_default_impl(x: u32) -> (Self, u32);
21     fn without_default_impl_generic<T>(x: T) -> (Self, T);
22 }
23
24 impl Trait for char {
25     fn without_self() -> u32 { 2 }
26     fn without_default_impl(x: u32) -> (Self, u32) { ('c', x) }
27     fn without_default_impl_generic<T>(x: T) -> (Self, T) { ('c', x) }
28 }
29
30 impl Trait for u32 {
31     fn without_self() -> u32 { 1 }
32     fn without_default_impl(x: u32) -> (Self, u32) { (0, x) }
33     fn without_default_impl_generic<T>(x: T) -> (Self, T) { (0, x) }
34 }