mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
22 lines
291 B
Rust
22 lines
291 B
Rust
//! Test global scope resolution with :: operator
|
|
|
|
//@ run-pass
|
|
|
|
pub fn f() -> isize {
|
|
return 1;
|
|
}
|
|
|
|
pub mod foo {
|
|
pub fn f() -> isize {
|
|
return 2;
|
|
}
|
|
pub fn g() {
|
|
assert_eq!(f(), 2);
|
|
assert_eq!(::f(), 1);
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
return foo::g();
|
|
}
|