summaryrefslogtreecommitdiffstats
path: root/tests/ui/lang-items/start_lang_item_args.too_many_args.stderr
blob: 30a7ed18a3d23f1a13df37ec5b34ffc6b1f85402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: incorrect number of parameters for the `start` lang item
  --> $DIR/start_lang_item_args.rs:41:1
   |
LL | / fn start<T>(
LL | |
LL | |     _main: fn() -> T,
LL | |     _argc: isize,
...  |
LL | |     _extra_arg: (),
LL | | ) -> isize {
   | |__________^
   |
   = note: the `start` lang item should have four parameters, but found 5
   = note: the `start` lang item should have the signature `fn(fn() -> T, isize, *const *const u8, u8) -> isize`

error: aborting due to previous error