rust/tests/ui/imports/empty-import-prefix-pass-2015.rs

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

11 lines
88 B
Rust
Raw Normal View History

//@ check-pass
//@ edition:2015
use {};
use {{}};
use ::{};
use {::{}};
fn main() {}