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
8b141d5d37
rust
/
src
/
test
/
compile-fail
/
import-loop.rs
11 lines
86 B
Rust
Raw
Normal View
History
Unescape
Escape
Stop showing a 'cyclic import' message for unresolved imports This only happened for single-length import paths, because the import was being looked up in its own scope.
2011-05-24 13:58:38 -05:00
// error-pattern: cyclic import
Catch cyclic imports harder. Add 2 tests to confirm.
2010-07-09 13:59:00 -05:00
Stop showing a 'cyclic import' message for unresolved imports This only happened for single-length import paths, because the import was being looked up in its own scope.
2011-05-24 13:58:38 -05:00
import
y
::
x
;
mod
y
{
import
x
;
}
Catch cyclic imports harder. Add 2 tests to confirm.
2010-07-09 13:59:00 -05:00
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink