summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/struct-literal-in-for.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/struct-literal-in-for.stderr')
-rw-r--r--src/test/ui/parser/struct-literal-in-for.stderr31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/test/ui/parser/struct-literal-in-for.stderr b/src/test/ui/parser/struct-literal-in-for.stderr
deleted file mode 100644
index 1c91eba68..000000000
--- a/src/test/ui/parser/struct-literal-in-for.stderr
+++ /dev/null
@@ -1,31 +0,0 @@
-error: struct literals are not allowed here
- --> $DIR/struct-literal-in-for.rs:12:14
- |
-LL | for x in Foo {
- | ______________^
-LL | | x: 3
-LL | | }.hi() {
- | |_____^
- |
-help: surround the struct literal with parentheses
- |
-LL ~ for x in (Foo {
-LL | x: 3
-LL ~ }).hi() {
- |
-
-error[E0277]: `bool` is not an iterator
- --> $DIR/struct-literal-in-for.rs:12:14
- |
-LL | for x in Foo {
- | ______________^
-LL | | x: 3
-LL | | }.hi() {
- | |__________^ `bool` is not an iterator
- |
- = help: the trait `Iterator` is not implemented for `bool`
- = note: required for `bool` to implement `IntoIterator`
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0277`.