summaryrefslogtreecommitdiffstats
path: root/src/test/ui/iterators/vec-on-unimplemented.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/iterators/vec-on-unimplemented.stderr20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/ui/iterators/vec-on-unimplemented.stderr b/src/test/ui/iterators/vec-on-unimplemented.stderr
deleted file mode 100644
index afcce5c30..000000000
--- a/src/test/ui/iterators/vec-on-unimplemented.stderr
+++ /dev/null
@@ -1,20 +0,0 @@
-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
- |
-LL | pub struct Vec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global> {
- | ------------------------------------------------------------------------------------------------ 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`.