mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: fix position of infix expr error
This commit is contained in:
parent
be04de98bb
commit
0626ac2901
@ -606,7 +606,7 @@ pub fn (mut c Checker) infix_expr(mut infix_expr ast.InfixExpr) table.Type {
|
||||
}
|
||||
if left.kind != .interface_ && left.kind != .sum_type {
|
||||
c.error('`$infix_expr.op.str()` can only be used with interfaces and sum types',
|
||||
type_expr.pos)
|
||||
infix_expr.pos)
|
||||
}
|
||||
return table.bool_type
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user