3612c2983e
This can fix a lot of issues related to inexact generation, in particular #KT-27093 Fixed
10 lines
189 B
Plaintext
Vendored
10 lines
189 B
Plaintext
Vendored
// "Add missing actual members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
actual class My actual constructor(a: Int, b: String) {
|
|
actual constructor(b: String, a: Int)
|
|
|
|
actual fun test() {
|
|
}
|
|
}
|