diff options
| author | lars <lars.scheme@gmail.com> | 2021-05-06 08:33:45 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2021-05-06 18:44:10 +0200 |
| commit | 96e593145dcdb53ca02f2a365abc68415c4302b6 (patch) | |
| tree | 428bafc94779a7d7ee3f28968ea689c1dbbc6b58 /lib/std/process.zig | |
| parent | 88d40fc005894ef84eb8bf54314da293772c4bba (diff) | |
| download | zig-96e593145dcdb53ca02f2a365abc68415c4302b6.tar.gz zig-96e593145dcdb53ca02f2a365abc68415c4302b6.zip | |
stage1: improve message for missing fn return type
Coming from other languages it might be tempting for programmers to
accidentally leave out the return type instead of returning 'void'.
The error for this used to be
error: invalid token: '{'
pub fn main() {
^
which is misleading. The '{' is expected but only after a return type.
The new message is
error: expected return type (use 'void' to return nothing), found: '{'
pub fn main() {
^
which not only points out the real error but also hints at a (probably)
very common case where someone coming from e.g. Go is used to not
specifying a return type if a function returns nothing and thus forgets
to put 'void' there.
It might seem overkill to hint at the 'void' option but then the
compiler error messages are our user interface to the programmer. We
can be better than other languages in our error messages and leaving
out the return type seems to be a rather clear indication of the above
mentioned issue. Adding this will help more than distract.
Diffstat (limited to 'lib/std/process.zig')
0 files changed, 0 insertions, 0 deletions
