diff --git a/vlib/v/checker/checker.v b/vlib/v/checker/checker.v index 6f62f129e1..f164b986a8 100644 --- a/vlib/v/checker/checker.v +++ b/vlib/v/checker/checker.v @@ -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) } }