// ISSUE: KT-58751 class Result interface Convert { fun convert(str: String): Result } fun Convert<*>.cnv(value: String): Result = convert(value)