rust/tests/ui/underscore-imports/intercrate.rs

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

12 lines
168 B
Rust
Raw Normal View History

2022-05-28 09:57:02 +00:00
//@ check-pass
//@ aux-build:underscore-imports.rs
extern crate underscore_imports;
use underscore_imports::*;
fn main() {
().in_scope1();
().in_scope2();
}