2013-05-10 23:33:58 -05:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
pub use sub_foo::Foo;
|
2013-05-11 23:46:30 -05:00
|
|
|
pub use Baz = self::Bar;
|
2013-06-01 04:54:39 -05:00
|
|
|
pub use sub_foo::Boz;
|
|
|
|
pub use sub_foo::Bort;
|
2013-05-11 23:46:30 -05:00
|
|
|
|
|
|
|
pub trait Bar {
|
2013-08-09 03:25:24 -05:00
|
|
|
fn bar() -> Self;
|
2013-05-11 23:46:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Bar for int {
|
2013-08-09 03:25:24 -05:00
|
|
|
fn bar() -> int { 84 }
|
2013-05-11 23:46:30 -05:00
|
|
|
}
|
2013-05-10 23:33:58 -05:00
|
|
|
|
|
|
|
pub mod sub_foo {
|
|
|
|
pub trait Foo {
|
2013-08-09 03:25:24 -05:00
|
|
|
fn foo() -> Self;
|
2013-05-10 23:33:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo for int {
|
2013-08-09 03:25:24 -05:00
|
|
|
fn foo() -> int { 42 }
|
2013-05-10 23:33:58 -05:00
|
|
|
}
|
2013-05-11 23:46:30 -05:00
|
|
|
|
2013-06-01 04:54:39 -05:00
|
|
|
pub struct Boz {
|
2014-05-22 18:57:53 -05:00
|
|
|
unused_str: String
|
2013-06-01 04:54:39 -05:00
|
|
|
}
|
|
|
|
|
2013-06-03 18:56:35 -05:00
|
|
|
impl Boz {
|
2013-06-01 04:54:39 -05:00
|
|
|
pub fn boz(i: int) -> bool {
|
|
|
|
i > 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Bort {
|
|
|
|
Bort1,
|
|
|
|
Bort2
|
|
|
|
}
|
|
|
|
|
2013-06-03 18:56:35 -05:00
|
|
|
impl Bort {
|
2014-05-22 18:57:53 -05:00
|
|
|
pub fn bort() -> String {
|
2014-05-25 05:17:19 -05:00
|
|
|
"bort()".to_string()
|
2013-06-01 04:54:39 -05:00
|
|
|
}
|
|
|
|
}
|
2013-05-10 23:33:58 -05:00
|
|
|
}
|