]> git.lizzy.rs Git - rust.git/blob - src/test/ui/stability-attribute/issue-28075.rs
Auto merge of #79780 - camelid:use-summary_opts, r=GuillaumeGomez
[rust.git] / src / test / ui / stability-attribute / issue-28075.rs
1 // Unstable entities should be caught in import lists
2
3 // aux-build:lint-stability.rs
4
5 #![allow(warnings)]
6
7 extern crate lint_stability;
8
9 use lint_stability::{unstable, deprecated};
10 //~^ ERROR use of unstable library feature 'unstable_test_feature'
11
12 fn main() {
13 }