]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/lint-output-format-2.rs
New upstream version 1.47.0~beta.2+dfsg1
[rustc.git] / src / test / ui / lint / lint-output-format-2.rs
CommitLineData
476ff2be 1// aux-build:lint_output_format.rs
223e47cc 2
b7449926 3#![feature(unstable_test_feature)]
dfeec247 4// check-pass
223e47cc 5
476ff2be
SL
6extern crate lint_output_format;
7use lint_output_format::{foo, bar};
3dfed10e 8//~^ WARNING use of deprecated function `lint_output_format::foo`: text
223e47cc 9
a1dfa0c6
XL
10
11fn main() {
8bb4bdeb 12 let _x = foo();
3dfed10e 13 //~^ WARNING use of deprecated function `lint_output_format::foo`: text
476ff2be 14 let _y = bar();
223e47cc 15}