about summary refs log tree commit diff
path: root/tests/ui/lint/lint-output-format-2.rs
blob: 96d8030d574ad87ab82a88449ae95b270a87450c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ 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 function `lint_output_format::foo`: text


fn main() {
    let _x = foo();
    //~^ WARNING use of deprecated function `lint_output_format::foo`: text
    let _y = bar();
}