summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/type-ascription-instead-of-path-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/type-ascription-instead-of-path-2.stderr')
-rw-r--r--tests/ui/suggestions/type-ascription-instead-of-path-2.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/suggestions/type-ascription-instead-of-path-2.stderr b/tests/ui/suggestions/type-ascription-instead-of-path-2.stderr
new file mode 100644
index 000000000..970b220b7
--- /dev/null
+++ b/tests/ui/suggestions/type-ascription-instead-of-path-2.stderr
@@ -0,0 +1,12 @@
+error: expected `::`, found `(`
+ --> $DIR/type-ascription-instead-of-path-2.rs:3:63
+ |
+LL | let _ = vec![Ok(2)].into_iter().collect:<Result<Vec<_>,_>>()?;
+ | - ^ expected `::`
+ | |
+ | help: maybe write a path separator here: `::`
+ |
+ = note: `#![feature(type_ascription)]` lets you annotate an expression with a type: `<expr>: <type>`
+
+error: aborting due to previous error
+