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