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
rust
/
src
/
test
/
compile-fail
/
bad-module.rs
4 lines
76 B
Rust
Raw
Normal View
History
Unescape
Escape
Mark crate metadata with a version tag. Close #3390.
2012-09-05 15:27:22 -07:00
// error-pattern: unresolved name
Improve nonexistent-module error message The error message for (for example) "import vec;" without "use std;" was "cyclic import", which was misleading because there were no cycles. I changed it to "cyclic import or nonexistent module", which doesn't break existing tests.
2011-05-24 10:46:48 -07:00
Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.
2012-06-29 16:26:56 -07:00
fn
main
(
)
{
let
foo
=
thing
::
len
(
~
[
]
)
;
}
Reference in New Issue
Copy Permalink