]> git.proxmox.com Git - rustc.git/blame - src/test/ui/expr/if/attrs/stmt-expr-gated.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / expr / if / attrs / stmt-expr-gated.rs
CommitLineData
74b04a01
XL
1fn main() {
2 let _ = #[deny(warnings)] if true { //~ ERROR attributes on expressions
3 } else if false {
4 } else {
5 };
6}