summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-forbid-attr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lint/lint-forbid-attr.stderr')
-rw-r--r--src/test/ui/lint/lint-forbid-attr.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/lint/lint-forbid-attr.stderr b/src/test/ui/lint/lint-forbid-attr.stderr
deleted file mode 100644
index 5977b9c94..000000000
--- a/src/test/ui/lint/lint-forbid-attr.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0453]: allow(deprecated) incompatible with previous forbid
- --> $DIR/lint-forbid-attr.rs:3:9
- |
-LL | #![forbid(deprecated)]
- | ---------- `forbid` level set here
-LL |
-LL | #[allow(deprecated)]
- | ^^^^^^^^^^ overruled by previous forbid
-
-error[E0453]: allow(deprecated) incompatible with previous forbid
- --> $DIR/lint-forbid-attr.rs:3:9
- |
-LL | #![forbid(deprecated)]
- | ---------- `forbid` level set here
-LL |
-LL | #[allow(deprecated)]
- | ^^^^^^^^^^ overruled by previous forbid
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0453`.