79c04038fb
also on the way done small refactoring of JetTypeMapper - few code duplicates replace by methods - mapToCallableMethod(ConstructorDescriptor) introduced
12 lines
199 B
Kotlin
12 lines
199 B
Kotlin
package someTest
|
|
|
|
public class Some private(val v: String) {
|
|
class object {
|
|
public fun init(v: String): Some {
|
|
return Some(v)
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box() = Some.init("OK").v
|