2019-04-14 19:09:03 -05:00
|
|
|
error: struct literals are not allowed here
|
|
|
|
--> $DIR/E0423.rs:12:32
|
2018-06-04 20:47:47 -05:00
|
|
|
|
|
|
|
|
LL | if let S { x: _x, y: 2 } = S { x: 1, y: 2 } { println!("Ok"); }
|
2019-04-14 19:09:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2019-05-02 17:53:09 -05:00
|
|
|
help: surround the struct literal with parentheses
|
2019-03-12 21:27:10 -05:00
|
|
|
|
|
2019-04-14 19:09:03 -05:00
|
|
|
LL | if let S { x: _x, y: 2 } = (S { x: 1, y: 2 }) { println!("Ok"); }
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2018-06-04 20:47:47 -05:00
|
|
|
|
|
|
|
error: expected expression, found `==`
|
2019-04-14 19:09:03 -05:00
|
|
|
--> $DIR/E0423.rs:14:13
|
2018-06-04 20:47:47 -05:00
|
|
|
|
|
|
|
|
LL | if T {} == T {} { println!("Ok"); }
|
|
|
|
| ^^ expected expression
|
|
|
|
|
2019-04-14 19:09:03 -05:00
|
|
|
error: struct literals are not allowed here
|
|
|
|
--> $DIR/E0423.rs:20:14
|
2018-06-04 20:47:47 -05:00
|
|
|
|
|
|
|
|
LL | for _ in std::ops::Range { start: 0, end: 10 } {}
|
2019-04-14 19:09:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2019-05-02 17:53:09 -05:00
|
|
|
help: surround the struct literal with parentheses
|
2019-03-12 21:27:10 -05:00
|
|
|
|
|
2019-04-14 19:09:03 -05:00
|
|
|
LL | for _ in (std::ops::Range { start: 0, end: 10 }) {}
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2018-06-04 20:47:47 -05:00
|
|
|
|
2022-10-05 00:35:34 -05:00
|
|
|
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"); }
|
|
|
|
| + +
|
|
|
|
|
2019-10-14 19:20:50 -05:00
|
|
|
error[E0423]: expected function, tuple struct or tuple variant, found struct `Foo`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0423.rs:4:13
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2020-03-21 09:03:58 -05:00
|
|
|
LL | struct Foo { a: bool };
|
|
|
|
| ---------------------- `Foo` defined here
|
2022-06-08 13:07:59 -05:00
|
|
|
LL |
|
2020-03-21 09:03:58 -05:00
|
|
|
LL | let f = Foo();
|
2020-07-09 19:42:07 -05:00
|
|
|
| ^^^^^
|
2020-08-09 22:29:39 -05:00
|
|
|
...
|
|
|
|
LL | fn foo() {
|
|
|
|
| -------- similarly named function `foo` defined here
|
2020-07-09 19:42:07 -05:00
|
|
|
|
|
|
|
|
help: use struct literal syntax instead
|
|
|
|
|
|
|
|
|
LL | let f = Foo { a: val };
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~~~~~~
|
2020-08-09 22:29:39 -05:00
|
|
|
help: a function with a similar name exists
|
|
|
|
|
|
|
|
|
LL | let f = foo();
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~
|
2018-06-04 20:47:47 -05:00
|
|
|
|
2019-04-14 19:09:03 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0423`.
|