mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: error if variable used before decleration p1
This commit is contained in:
parent
624005bbd0
commit
8a5ca4cbdc
@ -2084,6 +2084,9 @@ pub fn (mut c Checker) ident(mut ident ast.Ident) table.Type {
|
||||
return obj.typ
|
||||
}
|
||||
ast.Var {
|
||||
if ident.pos.pos < obj.pos.pos {
|
||||
c.error('variable `$ident.name` used before decleration', ident.pos)
|
||||
}
|
||||
mut typ := obj.typ
|
||||
if typ == 0 {
|
||||
if obj.expr is ast.Ident {
|
||||
|
Loading…
Reference in New Issue
Block a user