Add constructor parameter: add generic types correctly

#KT-34203 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-10-07 18:22:45 +09:00
committed by Mikhail Glukhikh
parent 76a65af14b
commit 23749bdde7
4 changed files with 18 additions and 6 deletions
@@ -0,0 +1,3 @@
// "Add constructor parameter 'foos'" "true"
abstract class Foo(foos: List<String>)
class Bar() : Foo(<caret>)
@@ -0,0 +1,3 @@
// "Add constructor parameter 'foos'" "true"
abstract class Foo(foos: List<String>)
class Bar(foos: List<String>) : Foo(foos)