mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
error: in expressions, `_` can only be used on the left-hand side of an assignment
|
|
--> $DIR/fn-or-tuple-struct-with-underscore-args.rs:10:24
|
|
|
|
|
LL | let _: usize = foo(_, _);
|
|
| ^ `_` not allowed here
|
|
|
|
error: in expressions, `_` can only be used on the left-hand side of an assignment
|
|
--> $DIR/fn-or-tuple-struct-with-underscore-args.rs:10:27
|
|
|
|
|
LL | let _: usize = foo(_, _);
|
|
| ^ `_` not allowed here
|
|
|
|
error: in expressions, `_` can only be used on the left-hand side of an assignment
|
|
--> $DIR/fn-or-tuple-struct-with-underscore-args.rs:13:18
|
|
|
|
|
LL | let _: S = S(_, _);
|
|
| ^ `_` not allowed here
|
|
|
|
error: in expressions, `_` can only be used on the left-hand side of an assignment
|
|
--> $DIR/fn-or-tuple-struct-with-underscore-args.rs:13:21
|
|
|
|
|
LL | let _: S = S(_, _);
|
|
| ^ `_` not allowed here
|
|
|
|
error: in expressions, `_` can only be used on the left-hand side of an assignment
|
|
--> $DIR/fn-or-tuple-struct-with-underscore-args.rs:16:27
|
|
|
|
|
LL | let _: usize = T::baz(_, _);
|
|
| ^ `_` not allowed here
|
|
|
|
error: in expressions, `_` can only be used on the left-hand side of an assignment
|
|
--> $DIR/fn-or-tuple-struct-with-underscore-args.rs:16:30
|
|
|
|
|
LL | let _: usize = T::baz(_, _);
|
|
| ^ `_` not allowed here
|
|
|
|
error: aborting due to 6 previous errors
|
|
|