Add KotlinClassConstructorInfoHandler for showing parameter info of parameterized super class constructor.
^KT-41617 Fixed
This commit is contained in:
committed by
Vladimir Dolzhenko
parent
d674f519fd
commit
01143f24a4
@@ -0,0 +1,11 @@
|
||||
open class Parameterized<A, C: Cloneable, R: Runnable>
|
||||
|
||||
class AC
|
||||
class CC : Cloneable
|
||||
class RC : Runnable {
|
||||
override fun run() {}
|
||||
}
|
||||
|
||||
class UsageClass : Parameterized<AC, CC<caret>, RC>()
|
||||
|
||||
//Text: (A, <highlight>C : Cloneable</highlight>, R : Runnable), Disabled: false, Strikeout: false, Green: false
|
||||
Reference in New Issue
Block a user