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