Set primary constructor and its properties actual in "create actual"

So #KT-20044 Fixed
This commit is contained in:
Mikhail Glukhikh
2017-10-03 13:12:47 +03:00
parent d85c2dbe1f
commit fe786ad7f3
8 changed files with 25 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
// "Create actual class for platform JVM" "true"
expect class <caret>WithPrimaryConstructor(x: Int, s: String)

View File

@@ -0,0 +1,3 @@
// "Create actual class for platform JVM" "true"
expect class WithPrimaryConstructor(x: Int, s: String)

View File

@@ -0,0 +1 @@
// WithPrimaryConstructor: to be implemented

View File

@@ -0,0 +1,2 @@
// WithPrimaryConstructor: to be implemented
actual class WithPrimaryConstructor actual constructor(x: Int, s: String)