]> git.proxmox.com Git - rustc.git/blame - tests/ui/lang-items/start_lang_item_args.main_ret.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / lang-items / start_lang_item_args.main_ret.stderr
CommitLineData
781aab86 1error[E0308]: lang item `start` function has wrong type
9c376795
FG
2 --> $DIR/start_lang_item_args.rs:68:20
3 |
4LL | fn start<T>(_main: fn() -> u16, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
781aab86
FG
5 | - ^^^^^^^^^^^ expected type parameter `T`, found `u16`
6 | |
7 | this type parameter
9c376795 8 |
781aab86
FG
9 = note: expected signature `fn(fn() -> T, _, _, _) -> _`
10 found signature `fn(fn() -> u16, _, _, _) -> _`
9c376795
FG
11
12error: aborting due to previous error
13
781aab86 14For more information about this error, try `rustc --explain E0308`.