3612c2983e
This can fix a lot of issues related to inexact generation, in particular #KT-27093 Fixed
16 lines
279 B
Plaintext
Vendored
16 lines
279 B
Plaintext
Vendored
// Interface: to be implemented
|
|
actual interface Interface {
|
|
actual fun foo(param: String): Int
|
|
|
|
actual fun String.bar(y: Double): Boolean
|
|
|
|
actual val isGood: Boolean
|
|
|
|
actual var status: Int
|
|
|
|
actual class Nested {
|
|
actual fun bar() {
|
|
}
|
|
}
|
|
|
|
} |