2024-02-16 14:02:50 -06:00
|
|
|
//@ edition: 2021
|
2024-08-16 10:58:19 -05:00
|
|
|
//@ compile-flags: --extern issue_85992_extern --extern empty
|
|
|
|
//@ aux-build: issue-85992-extern.rs
|
|
|
|
//@ aux-build: empty.rs
|
2023-06-30 22:53:31 -05:00
|
|
|
|
2024-08-16 10:58:19 -05:00
|
|
|
issue_85992_extern::m!();
|
2023-06-30 22:53:31 -05:00
|
|
|
|
2024-08-16 10:58:19 -05:00
|
|
|
use crate::empty;
|
|
|
|
//~^ ERROR unresolved import `crate::empty`
|
2023-06-30 22:53:31 -05:00
|
|
|
|
|
|
|
fn main() {}
|