fix parser_test.v

pull/3237/head
Alexander Medvednikov 2019-12-27 18:55:51 +01:00
parent 66a07d7fe0
commit 796c376408
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import (
fn test_parse_file() {
s := '
fn foo() string {
fn foo() int {
f := 23
return 10+4
}

View File

@ -306,7 +306,7 @@ pub fn (t Token) str() string {
// Representation of highest and lowest precedence
const (
pub const (
lowest_prec = 0
highest_prec = 7
)