Add test methods and data base on raw fir builder test data
This commit is contained in:
committed by
Mikhail Glukhikh
parent
fd8205e317
commit
8047aa22a4
@@ -0,0 +1,11 @@
|
||||
open class Base<T>(val x: T)
|
||||
|
||||
// constructor Base<T>(T)
|
||||
// │ Derived.<init>.x: T
|
||||
// │ │
|
||||
class Derived<T : Any>(x: T) : Base<T>(x)
|
||||
|
||||
// constructor Derived<T : Any>(T)
|
||||
// │ create.x: T
|
||||
// │ │
|
||||
fun <T : Any> create(x: T): Derived<T> = Derived(x)
|
||||
Reference in New Issue
Block a user