about summary refs log tree commit diff
path: root/src/test/ui/panic-runtime
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2019-04-10 16:40:12 -0700
committerEsteban Küber <esteban@kuber.com.ar>2019-04-10 18:10:30 -0700
commit3ab97062cfddb6e5e5e32352dd15ca2243aba3ff (patch)
tree5b09387f24047ed0a7188be9e3858bdc8f12f2c6 /src/test/ui/panic-runtime
parent96d700f1b7bc9c53fa0d11567adb1ed2c1c27e79 (diff)
downloadrust-3ab97062cfddb6e5e5e32352dd15ca2243aba3ff.tar.gz
rust-3ab97062cfddb6e5e5e32352dd15ca2243aba3ff.zip
Tweak unstable diagnostic output
Diffstat (limited to 'src/test/ui/panic-runtime')
-rw-r--r--src/test/ui/panic-runtime/needs-gate.stderr6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/ui/panic-runtime/needs-gate.stderr b/src/test/ui/panic-runtime/needs-gate.stderr
index 5b8ff82d1fd..715c57c604c 100644
--- a/src/test/ui/panic-runtime/needs-gate.stderr
+++ b/src/test/ui/panic-runtime/needs-gate.stderr
@@ -1,17 +1,19 @@
-error[E0658]: the `#[panic_runtime]` attribute is an experimental feature (see issue #32837)
+error[E0658]: the `#[panic_runtime]` attribute is an experimental feature
   --> $DIR/needs-gate.rs:4:1
    |
 LL | #![panic_runtime]
    | ^^^^^^^^^^^^^^^^^
    |
+   = note: for more information, see tracking issue #32837
    = help: add #![feature(panic_runtime)] to the crate attributes to enable
 
-error[E0658]: the `#[needs_panic_runtime]` attribute is an experimental feature (see issue #32837)
+error[E0658]: the `#[needs_panic_runtime]` attribute is an experimental feature
   --> $DIR/needs-gate.rs:5:1
    |
 LL | #![needs_panic_runtime]
    | ^^^^^^^^^^^^^^^^^^^^^^^
    |
+   = note: for more information, see tracking issue #32837
    = help: add #![feature(needs_panic_runtime)] to the crate attributes to enable
 
 error: aborting due to 2 previous errors