Files
rust/tests/ui/imports/issue-1697.rs

9 lines
274 B
Rust
Raw Normal View History

2012-02-22 21:14:27 -08:00
// Testing that we don't fail abnormally after hitting the errors
use unresolved::*;
//~^ ERROR unresolved import `unresolved` [E0432]
//~| NOTE use of unresolved module or unlinked crate `unresolved`
//~| HELP you might be missing a crate named `unresolved`
2012-02-22 21:14:27 -08:00
fn main() {}