rust/tests/ui/feature-gates/issue-49983-see-issue-0.rs

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() {}