blob: 521472d99b17d9fe12901f70c528cbb5fe2c0a57 [file] [log] [blame]
// aux-build:lint_output_format.rs
#![feature(unstable_test_feature)]
// check-pass
extern crate lint_output_format;
use lint_output_format::{foo, bar};
//~^ WARNING use of deprecated item 'lint_output_format::foo': text
fn main() {
let _x = foo();
//~^ WARNING use of deprecated item 'lint_output_format::foo': text
let _y = bar();
}