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

v2: allow type with str method to be used as fn string argument

This commit is contained in:
joe-conigliaro 2020-02-20 23:18:55 +11:00
parent c099cd8bf6
commit e7e2c68d09

View File

@ -157,6 +157,10 @@ pub fn (c mut Checker) call_expr(call_expr ast.CallExpr) table.Type {
typ_sym := c.table.get_type_symbol(typ)
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') {
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)
}
}