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
166 B
Rust
Raw Normal View History

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