9 lines
164 B
Plaintext
Vendored
9 lines
164 B
Plaintext
Vendored
// "Remove 'actual' modifier" "true"
|
|
|
|
actual interface ExpInterface {
|
|
actual fun first()
|
|
}
|
|
|
|
actual class ExpImpl : ExpInterface {
|
|
override fun first() { }
|
|
} |