summaryrefslogtreecommitdiffstats
path: root/tests/ui/lang-items/start_lang_item_args.main_ret.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lang-items/start_lang_item_args.main_ret.stderr')
-rw-r--r--tests/ui/lang-items/start_lang_item_args.main_ret.stderr13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/lang-items/start_lang_item_args.main_ret.stderr b/tests/ui/lang-items/start_lang_item_args.main_ret.stderr
new file mode 100644
index 000000000..8f967252f
--- /dev/null
+++ b/tests/ui/lang-items/start_lang_item_args.main_ret.stderr
@@ -0,0 +1,13 @@
+error: parameter 1 of the `start` lang item is incorrect
+ --> $DIR/start_lang_item_args.rs:68:20
+ |
+LL | fn start<T>(_main: fn() -> u16, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
+ | ^^^^^^^^^^^
+ |
+help: change the type from `fn() -> u16` to `fn() -> T`
+ |
+LL | fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
+ | ~~~~~~~~~
+
+error: aborting due to previous error
+