rust/tests/ui/imports/issue-85992.rs

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

12 lines
245 B
Rust
Raw Normal View History

//@ edition: 2021
//@ compile-flags: --extern issue_85992_extern --extern empty
//@ aux-build: issue-85992-extern.rs
//@ aux-build: empty.rs
issue_85992_extern::m!();
use crate::empty;
//~^ ERROR unresolved import `crate::empty`
fn main() {}