2016-11-10 17:08:21 +00:00
|
|
|
// aux-build:lint_output_format.rs
|
|
|
|
|
2018-07-23 11:23:40 +00:00
|
|
|
#![feature(unstable_test_feature)]
|
2020-01-23 00:00:00 +00:00
|
|
|
// check-pass
|
2016-11-10 17:08:21 +00:00
|
|
|
|
|
|
|
extern crate lint_output_format;
|
|
|
|
use lint_output_format::{foo, bar};
|
2020-07-25 17:49:46 +00:00
|
|
|
//~^ WARNING use of deprecated function `lint_output_format::foo`: text
|
2016-11-10 17:08:21 +00:00
|
|
|
|
2018-10-31 12:08:01 +00:00
|
|
|
|
|
|
|
fn main() {
|
2017-01-06 02:55:36 +00:00
|
|
|
let _x = foo();
|
2020-07-25 17:49:46 +00:00
|
|
|
//~^ WARNING use of deprecated function `lint_output_format::foo`: text
|
2016-11-10 17:08:21 +00:00
|
|
|
let _y = bar();
|
|
|
|
}
|