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

builder: improve redefinition of function messages

This commit is contained in:
Delyan Angelov 2020-05-28 00:56:28 +03:00
parent 0292666ac1
commit 2046ae78df

View File

@ -267,7 +267,8 @@ fn (b &Builder) print_warnings_and_errors() {
if stmt is ast.FnDecl {
f := stmt as ast.FnDecl
if f.name == fn_name {
println(file.path + ':' + f.pos.line_nr.str())
fline := f.pos.line_nr
println('${file.path}:${fline}:')
}
}
}