mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
482 B
Plaintext
14 lines
482 B
Plaintext
error: parameter 1 of the `start` lang item is incorrect
|
|
--> $DIR/start_lang_item_args.rs:61:20
|
|
|
|
|
LL | fn start<T>(_main: fn(i32) -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: change the type from `fn(i32) -> T` to `fn() -> T`
|
|
|
|
|
LL | fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
|
|
| ~~~~~~~~~
|
|
|
|
error: aborting due to previous error
|
|
|