rust/tests/ui/resolve/resolve-bad-import-prefix.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
318 B
Rust
Raw Normal View History

mod m {}
enum E {}
struct S;
trait Tr {}
2016-08-03 18:51:52 -05:00
use {}; // OK
use ::{}; // OK
use m::{}; // OK
use E::{}; // OK
use S::{}; // FIXME, this and `use S::{self};` should be an error
use Tr::{}; // FIXME, this and `use Tr::{self};` should be an error
use Nonexistent::{}; //~ ERROR unresolved import `Nonexistent`
fn main () {}