summaryrefslogtreecommitdiffstats
path: root/src/test/ui/deprecation/staged-deprecation-in-future.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/deprecation/staged-deprecation-in-future.stderr')
-rw-r--r--src/test/ui/deprecation/staged-deprecation-in-future.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/deprecation/staged-deprecation-in-future.stderr b/src/test/ui/deprecation/staged-deprecation-in-future.stderr
new file mode 100644
index 000000000..13d98044a
--- /dev/null
+++ b/src/test/ui/deprecation/staged-deprecation-in-future.stderr
@@ -0,0 +1,20 @@
+error: use of unit struct `S1` that will be deprecated in future version 99.99.99: effectively never
+ --> $DIR/staged-deprecation-in-future.rs:16:13
+ |
+LL | let _ = S1;
+ | ^^
+ |
+note: the lint level is defined here
+ --> $DIR/staged-deprecation-in-future.rs:1:9
+ |
+LL | #![deny(deprecated_in_future)]
+ | ^^^^^^^^^^^^^^^^^^^^
+
+error: use of unit struct `S2` that will be deprecated in a future Rust version: literally never
+ --> $DIR/staged-deprecation-in-future.rs:17:13
+ |
+LL | let _ = S2;
+ | ^^
+
+error: aborting due to 2 previous errors
+