summaryrefslogtreecommitdiffstats
path: root/tests/ui/lang-items/start_lang_item_args.missing_all_args.stderr
blob: 004c2a67f62f19fea0294a477b10c0d7305d1c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: incorrect number of parameters for the `start` lang item
  --> $DIR/start_lang_item_args.rs:15:1
   |
LL | fn start<T>() -> isize {
   | ^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the `start` lang item should have four parameters, but found 0
   = note: the `start` lang item should have the signature `fn(fn() -> T, isize, *const *const u8, u8) -> isize`

error: aborting due to previous error