mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
417 B
Plaintext
15 lines
417 B
Plaintext
error: `call` trait item in `fn` lang item must be a function
|
|
--> $DIR/fn-fn_mut-call-ill-formed.rs:10:5
|
|
|
|
|
LL | const call: i32 = 42;
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: first argument of `call` in `fn_mut` lang item must be a reference
|
|
--> $DIR/fn-fn_mut-call-ill-formed.rs:16:16
|
|
|
|
|
LL | fn call(i: i32, j: i32) -> i32 { i + j }
|
|
| ^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|