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

v2: checker use kind instead of idx

This commit is contained in:
joe-conigliaro 2020-02-20 23:27:23 +11:00
parent e7e2c68d09
commit 6f7c103e50

View File

@ -158,7 +158,7 @@ pub fn (c mut Checker) call_expr(call_expr ast.CallExpr) table.Type {
arg_typ_sym := c.table.get_type_symbol(arg.typ)
if !c.table.check(typ, arg.typ) {
// str method, allow type with str method if fn arg is string
if table.type_idx(arg.typ) == table.string_type_idx && typ_sym.has_method('str') {
if arg_typ_sym.kind == .string && typ_sym.has_method('str') {
break
}
c.error('!cannot use type `$typ_sym.name` as type `$arg_typ_sym.name` in argument ${i+1} to `$fn_name`', call_expr.pos)