KT-14274: resolve type alias constructors calls in supertypes list as type alias constructors.
Support @Deprecated for type aliases, including type alias constructors.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
open class Cell<T>(val value: T)
|
||||
|
||||
typealias CT<T> = Cell<T>
|
||||
typealias CStr = Cell<String>
|
||||
|
||||
class C1 : CT<String>("O")
|
||||
class C2 : CStr("K")
|
||||
|
||||
fun box(): String =
|
||||
C1().value + C2().value
|
||||
Reference in New Issue
Block a user