Add constructor parameter: add generic types correctly
#KT-34203 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
76a65af14b
commit
23749bdde7
@@ -0,0 +1,3 @@
|
||||
// "Add constructor parameter 'foos'" "true"
|
||||
abstract class Foo(foos: List<String>)
|
||||
class Bar() : Foo(<caret>)
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
// "Add constructor parameter 'foos'" "true"
|
||||
abstract class Foo(foos: List<String>)
|
||||
class Bar(foos: List<String>) : Foo(foos)
|
||||
Reference in New Issue
Block a user