1f1b2e42d7
[breaking-change]
54 lines
1.1 KiB
Rust
54 lines
1.1 KiB
Rust
// 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;
|
|
pub use Baz = self::Bar;
|
|
pub use sub_foo::Boz;
|
|
pub use sub_foo::Bort;
|
|
|
|
pub trait Bar {
|
|
fn bar() -> Self;
|
|
}
|
|
|
|
impl Bar for int {
|
|
fn bar() -> int { 84 }
|
|
}
|
|
|
|
pub mod sub_foo {
|
|
pub trait Foo {
|
|
fn foo() -> Self;
|
|
}
|
|
|
|
impl Foo for int {
|
|
fn foo() -> int { 42 }
|
|
}
|
|
|
|
pub struct Boz {
|
|
unused_str: String
|
|
}
|
|
|
|
impl Boz {
|
|
pub fn boz(i: int) -> bool {
|
|
i > 0
|
|
}
|
|
}
|
|
|
|
pub enum Bort {
|
|
Bort1,
|
|
Bort2
|
|
}
|
|
|
|
impl Bort {
|
|
pub fn bort() -> String {
|
|
"bort()".to_string()
|
|
}
|
|
}
|
|
}
|