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

error: aborting due to previous error