mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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() {}
|