Enable "add () fix" for expect base class without constructors

Related to KT-24597
This commit is contained in:
Mikhail Glukhikh
2018-08-06 13:54:04 +03:00
parent 79abf90916
commit a91442cd3b
5 changed files with 39 additions and 8 deletions
@@ -0,0 +1,7 @@
// "Change to constructor invocation" "true"
// ENABLE_MULTIPLATFORM
// DISABLE-ERRORS
expect open class A
class B : A<caret>
@@ -0,0 +1,7 @@
// "Change to constructor invocation" "true"
// ENABLE_MULTIPLATFORM
// DISABLE-ERRORS
expect open class A()
class B : A(<caret>)