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
8d381823e2
rust
/
src
/
test
/
run-pass
/
import4.rs
11 lines
114 B
Rust
Raw
Normal View
History
Unescape
Escape
Downcase std modules again, move to :: for module dereferencing This should be a snapshot transition.
2011-05-12 10:24:54 -05:00
import
zed
::
bar
;
Fix another import case we got wrong: The local environment should not interfere with the import statements.
2011-01-11 13:19:53 -06:00
mod
zed
{
fn
bar
(
)
{
log
"
bar
"
;
}
}
fn
main
(
vec
[
str
]
args
)
{
auto
zed
=
42
;
bar
(
)
;
}
Reference in New Issue
Copy Permalink