mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
12 lines
245 B
Rust
12 lines
245 B
Rust
//@ 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() {}
|