2023-09-17 18:13:05 +00:00
|
|
|
error[E0308]: lang item `start` function has wrong type
|
|
|
|
--> $DIR/start_lang_item_args.rs:61:1
|
2022-12-23 18:54:14 +00:00
|
|
|
|
|
|
|
|
LL | fn start<T>(_main: fn(i32) -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
|
2023-09-17 18:13:05 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect number of function parameters
|
2022-12-23 18:54:14 +00:00
|
|
|
|
|
2023-09-17 18:13:05 +00:00
|
|
|
= note: expected signature `fn(fn() -> _, _, _, _) -> _`
|
|
|
|
found signature `fn(fn(i32) -> _, _, _, _) -> _`
|
2022-12-23 18:54:14 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-12-23 18:54:14 +00:00
|
|
|
|
2023-09-17 18:13:05 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|