]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-output-format.rs
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / lint / lint-output-format.rs
1 // compile-flags: -F unused_features
2 // aux-build:lint_output_format.rs
3
4 #![allow(deprecated)]
5
6 extern crate lint_output_format; //~ ERROR use of unstable library feature
7 use lint_output_format::{foo, bar}; //~ ERROR use of unstable library feature
8
9 fn main() {
10     let _x = foo();
11     let _y = bar(); //~ ERROR use of unstable library feature
12 }