summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/many-type-ascription.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/many-type-ascription.stderr')
-rw-r--r--src/test/ui/suggestions/many-type-ascription.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/suggestions/many-type-ascription.stderr b/src/test/ui/suggestions/many-type-ascription.stderr
new file mode 100644
index 000000000..3706bbae9
--- /dev/null
+++ b/src/test/ui/suggestions/many-type-ascription.stderr
@@ -0,0 +1,12 @@
+error[E0658]: type ascription is experimental
+ --> $DIR/many-type-ascription.rs:2:13
+ |
+LL | let _ = 0: i32;
+ | ^^^^^^
+ |
+ = note: see issue #23416 <https://github.com/rust-lang/rust/issues/23416> for more information
+ = help: add `#![feature(type_ascription)]` to the crate attributes to enable
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0658`.