blob: 38cf03845010bc8736c556615ad0a7848deb19db (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ 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() {}
|