Kapt: Fix anonymous type transformer, do not use ClassDescriptor.defaultType as a replacement (KT-27119)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
interface Named {
|
||||
val name: String?
|
||||
}
|
||||
|
||||
class Product2 : Named {
|
||||
override var name: String? = null
|
||||
|
||||
constructor(otherName: String) {
|
||||
this.name = otherName
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user