rust/src/test/ui/lint-forbid-attr.stderr

13 lines
392 B
Plaintext
Raw Normal View History

error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
--> $DIR/lint-forbid-attr.rs:13:9
|
11 | #![forbid(deprecated)]
| ---------- `forbid` level set here
12 |
13 | #[allow(deprecated)]
| ^^^^^^^^^^ overruled by previous forbid
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0453"