mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 21:27:42 +00:00
10 lines
132 B
Rust
10 lines
132 B
Rust
#[doc(inline)]
|
|
//~^ ERROR conflicting
|
|
#[doc(no_inline)]
|
|
pub extern crate core;
|
|
|
|
// no warning
|
|
pub extern crate alloc;
|
|
|
|
fn main() {}
|