summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/issue-49983-see-issue-0.rs
blob: eeb80d014b2d5aba42b68ed3c1e92430875440cd (plain)
1
2
3
4
5
6
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() {}