rust/src/test/ui/lint-forbid-attr.stderr
Guillaume Gomez 2e104a77cf update tests
2018-03-14 00:53:24 +01:00

13 lines
382 B
Plaintext

error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
--> $DIR/lint-forbid-attr.rs:13:9
|
LL | #![forbid(deprecated)]
| ---------- `forbid` level set here
LL |
LL | #[allow(deprecated)]
| ^^^^^^^^^^ overruled by previous forbid
error: aborting due to previous error
For more information about this error, try `rustc --explain E0453`.