summaryrefslogtreecommitdiffstats
path: root/tests/ui/lang-items/start_lang_item_args.argv_inner_ptr.stderr
blob: 08efd5088f99b424228d4c5a84d7912853ebb76b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: parameter 3 of the `start` lang item is incorrect
  --> $DIR/start_lang_item_args.rs:82:52
   |
LL | fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const usize, _sigpipe: u8) -> isize {
   |                                                    ^^^^^^^^^^^^^^^^^^^
   |
help: change the type from `*const *const usize` to `*const *const u8`
   |
LL | fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
   |                                                    ~~~~~~~~~~~~~~~~

error: aborting due to previous error