mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
678 B
Rust
20 lines
678 B
Rust
fn foo(a: usize, b: usize) -> usize { a }
|
|
|
|
struct S(usize, usize);
|
|
|
|
trait T {
|
|
fn baz(x: usize, y: usize) -> usize { x }
|
|
}
|
|
|
|
fn main() {
|
|
let _: usize = foo(_, _);
|
|
//~^ ERROR `_` can only be used on the left-hand side of an assignment
|
|
//~| ERROR `_` can only be used on the left-hand side of an assignment
|
|
let _: S = S(_, _);
|
|
//~^ ERROR `_` can only be used on the left-hand side of an assignment
|
|
//~| ERROR `_` can only be used on the left-hand side of an assignment
|
|
let _: usize = T::baz(_, _);
|
|
//~^ ERROR `_` can only be used on the left-hand side of an assignment
|
|
//~| ERROR `_` can only be used on the left-hand side of an assignment
|
|
}
|