2024-02-16 20:02:50 +00:00
|
|
|
//@ compile-flags: -F unused_features
|
|
|
|
//@ aux-build:lint_output_format.rs
|
2013-10-08 18:26:09 -07:00
|
|
|
|
2016-11-10 19:08:21 +02:00
|
|
|
#![allow(deprecated)]
|
2015-01-16 14:08:24 -08:00
|
|
|
|
2015-03-05 18:33:58 -08:00
|
|
|
extern crate lint_output_format; //~ ERROR use of unstable library feature
|
2015-09-12 16:10:12 +03:00
|
|
|
use lint_output_format::{foo, bar}; //~ ERROR use of unstable library feature
|
2022-07-15 12:22:36 -05:00
|
|
|
//~| ERROR use of unstable library feature
|
2013-10-08 18:26:09 -07:00
|
|
|
|
|
|
|
fn main() {
|
2016-11-10 19:08:21 +02:00
|
|
|
let _x = foo();
|
2015-03-05 18:33:58 -08:00
|
|
|
let _y = bar(); //~ ERROR use of unstable library feature
|
2013-10-08 18:26:09 -07:00
|
|
|
}
|