This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
7b3e036252
rust
/
src
/
test
/
run-pass
/
super.rs
12 lines
124 B
Rust
Raw
Normal View
History
Unescape
Escape
librustc: Terminate name searches at the nearest module scope for paths that contain at least two components. r=graydon
2012-12-23 16:41:37 -06:00
pub
mod
a
{
pub
fn
f
(
)
{
}
pub
mod
b
{
fn
g
(
)
{
super
::
f
(
)
;
}
}
}
check-fast fallout from removing export, r=burningtree
2013-02-01 21:43:17 -06:00
pub
fn
main
(
)
{
librustc: Terminate name searches at the nearest module scope for paths that contain at least two components. r=graydon
2012-12-23 16:41:37 -06:00
}
Reference in New Issue
Copy Permalink