summaryrefslogtreecommitdiffstats
path: root/tests/ui/iterators/vec-on-unimplemented.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/iterators/vec-on-unimplemented.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/iterators/vec-on-unimplemented.stderr b/tests/ui/iterators/vec-on-unimplemented.stderr
new file mode 100644
index 000000000..a7d9c481a
--- /dev/null
+++ b/tests/ui/iterators/vec-on-unimplemented.stderr
@@ -0,0 +1,18 @@
+error[E0599]: `Vec<bool>` is not an iterator
+ --> $DIR/vec-on-unimplemented.rs:2:23
+ |
+LL | vec![true, false].map(|v| !v).collect::<Vec<_>>();
+ | ^^^ `Vec<bool>` is not an iterator; try calling `.into_iter()` or `.iter()`
+ --> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
+ |
+ = note: doesn't satisfy `Vec<bool>: Iterator`
+ |
+ = note: the following trait bounds were not satisfied:
+ `Vec<bool>: Iterator`
+ which is required by `&mut Vec<bool>: Iterator`
+ `[bool]: Iterator`
+ which is required by `&mut [bool]: Iterator`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0599`.