rust/src/test/run-pass/use-keyword-2.rs

22 lines
261 B
Rust
Raw Normal View History

#![allow(unused_variables)]
2016-04-16 13:53:40 -05:00
pub struct A;
mod test {
pub use super :: A;
pub use self :: A as B;
}
impl A {
fn f() {}
fn g() {
Self :: f()
}
}
fn main() {
let a: A = test::A;
let b: A = test::B;
let c: () = A::g();
}