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:
+3
-1
@@ -1,6 +1,8 @@
|
||||
package test
|
||||
|
||||
actual class C(n: Int)
|
||||
actual class C {
|
||||
actual constructor(n: Int)
|
||||
}
|
||||
|
||||
fun test() {
|
||||
C(1)
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
actual class C(n: Int)
|
||||
actual class C actual constructor(n: Int)
|
||||
|
||||
fun test() {
|
||||
C(1)
|
||||
|
||||
Reference in New Issue
Block a user