summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0423.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/error-codes/E0423.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/error-codes/E0423.stderr')
-rw-r--r--tests/ui/error-codes/E0423.stderr63
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0423.stderr b/tests/ui/error-codes/E0423.stderr
new file mode 100644
index 000000000..ac70d905d
--- /dev/null
+++ b/tests/ui/error-codes/E0423.stderr
@@ -0,0 +1,63 @@
+error: struct literals are not allowed here
+ --> $DIR/E0423.rs:12:32
+ |
+LL | if let S { x: _x, y: 2 } = S { x: 1, y: 2 } { println!("Ok"); }
+ | ^^^^^^^^^^^^^^^^
+ |
+help: surround the struct literal with parentheses
+ |
+LL | if let S { x: _x, y: 2 } = (S { x: 1, y: 2 }) { println!("Ok"); }
+ | + +
+
+error: expected expression, found `==`
+ --> $DIR/E0423.rs:14:13
+ |
+LL | if T {} == T {} { println!("Ok"); }
+ | ^^ expected expression
+
+error: struct literals are not allowed here
+ --> $DIR/E0423.rs:20:14
+ |
+LL | for _ in std::ops::Range { start: 0, end: 10 } {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+help: surround the struct literal with parentheses
+ |
+LL | for _ in (std::ops::Range { start: 0, end: 10 }) {}
+ | + +
+
+error[E0423]: expected value, found struct `T`
+ --> $DIR/E0423.rs:14:8
+ |
+LL | if T {} == T {} { println!("Ok"); }
+ | ^ not a value
+ |
+help: surround the struct literal with parentheses
+ |
+LL | if (T {}) == T {} { println!("Ok"); }
+ | + +
+
+error[E0423]: expected function, tuple struct or tuple variant, found struct `Foo`
+ --> $DIR/E0423.rs:4:13
+ |
+LL | struct Foo { a: bool };
+ | ---------------------- `Foo` defined here
+LL |
+LL | let f = Foo();
+ | ^^^^^
+...
+LL | fn foo() {
+ | -------- similarly named function `foo` defined here
+ |
+help: use struct literal syntax instead
+ |
+LL | let f = Foo { a: val };
+ | ~~~~~~~~~~~~~~
+help: a function with a similar name exists
+ |
+LL | let f = foo();
+ | ~~~
+
+error: aborting due to 5 previous errors
+
+For more information about this error, try `rustc --explain E0423`.