Misc: Update test data due to changes in 'actual' constructor checking

Now actual class constructor is considered an implementation
only if it has 'actual' modifier itself
This commit is contained in:
Alexey Sedunov
2018-02-07 13:25:08 +03:00
parent 91a4bbed2e
commit 930e51e30e
28 changed files with 32 additions and 28 deletions
@@ -1,7 +1,7 @@
package test
actual class C(s: String) {
constructor(n: Int, b: Boolean): this("")
actual constructor(n: Int, b: Boolean): this("")
}
fun test() {
@@ -1,6 +1,6 @@
package test
actual class C(n: Int, b: Boolean) {
actual class C actual constructor(n: Int, b: Boolean) {
constructor(s: String): this(1, false)
}