]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/lint-match-arms.rs
New upstream version 1.39.0+dfsg1
[rustc.git] / src / test / ui / lint / lint-match-arms.rs
CommitLineData
dc9dc135
XL
1fn deny_on_arm() {
2 match 0 {
3 #[deny(unused_variables)]
4 //~^ NOTE lint level defined here
5 y => (),
6 //~^ ERROR unused variable
7 }
8}
9
10#[deny(unused_variables)]
11fn allow_on_arm() {
12 match 0 {
13 #[allow(unused_variables)]
14 y => (), // OK
15 }
16}
17
18fn main() {}