mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 09:29:33 +00:00
7 lines
165 B
Rust
7 lines
165 B
Rust
extern crate core;
|
|
|
|
// error should not say "(see issue #0)"
|
|
#[allow(unused_imports)] use core::ptr::Unique; //~ ERROR use of unstable library feature
|
|
|
|
fn main() {}
|