mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
14 lines
391 B
Rust
14 lines
391 B
Rust
//@ compile-flags: -F unused_features
|
|
//@ aux-build:lint_output_format.rs
|
|
|
|
#![allow(deprecated)]
|
|
|
|
extern crate lint_output_format; //~ ERROR use of unstable library feature
|
|
use lint_output_format::{foo, bar}; //~ ERROR use of unstable library feature
|
|
//~| ERROR use of unstable library feature
|
|
|
|
fn main() {
|
|
let _x = foo();
|
|
let _y = bar(); //~ ERROR use of unstable library feature
|
|
}
|