1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix parser_test.v

This commit is contained in:
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
)