stage1: remove outdated error message regarding #447

This commit is contained in:
jacob gw
2021-05-04 16:00:12 -04:00
committed by Isaac Freund
parent 8f8efcdd6e
commit 24dfa61236
6 changed files with 55 additions and 85 deletions

View File

@@ -639,7 +639,7 @@ const Parser = struct {
};
}
/// FnProto <- KEYWORD_fn IDENTIFIER? LPAREN ParamDeclList RPAREN ByteAlign? LinkSection? CallConv? EXCLAMATIONMARK? (Keyword_anytype / TypeExpr)
/// FnProto <- KEYWORD_fn IDENTIFIER? LPAREN ParamDeclList RPAREN ByteAlign? LinkSection? CallConv? EXCLAMATIONMARK? TypeExpr
fn parseFnProto(p: *Parser) !Node.Index {
const fn_token = p.eatToken(.keyword_fn) orelse return null_node;