summaryrefslogtreecommitdiffstats
path: root/tests/ui/lang-items/start_lang_item_args.main_args.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lang-items/start_lang_item_args.main_args.stderr')
-rw-r--r--tests/ui/lang-items/start_lang_item_args.main_args.stderr13
1 files changed, 6 insertions, 7 deletions
diff --git a/tests/ui/lang-items/start_lang_item_args.main_args.stderr b/tests/ui/lang-items/start_lang_item_args.main_args.stderr
index c20a74466..91994b9d7 100644
--- a/tests/ui/lang-items/start_lang_item_args.main_args.stderr
+++ b/tests/ui/lang-items/start_lang_item_args.main_args.stderr
@@ -1,13 +1,12 @@
-error: parameter 1 of the `start` lang item is incorrect
- --> $DIR/start_lang_item_args.rs:61:20
+error[E0308]: lang item `start` function has wrong type
+ --> $DIR/start_lang_item_args.rs:61:1
|
LL | fn start<T>(_main: fn(i32) -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
- | ^^^^^^^^^^^^
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect number of function parameters
|
-help: change the type from `fn(i32) -> T` to `fn() -> T`
- |
-LL | fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
- | ~~~~~~~~~
+ = note: expected signature `fn(fn() -> _, _, _, _) -> _`
+ found signature `fn(fn(i32) -> _, _, _, _) -> _`
error: aborting due to previous error
+For more information about this error, try `rustc --explain E0308`.