]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-forbid-attr.stderr
Move parse-fail tests to UI
[rust.git] / src / test / ui / lint / lint-forbid-attr.stderr
1 error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
2   --> $DIR/lint-forbid-attr.rs:13:9
3    |
4 LL | #![forbid(deprecated)]
5    |           ---------- `forbid` level set here
6 LL | 
7 LL | #[allow(deprecated)]
8    |         ^^^^^^^^^^ overruled by previous forbid
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0453`.