9 lines
127 B
Kotlin
Vendored
9 lines
127 B
Kotlin
Vendored
package test
|
|
|
|
actual class ExpectClass {
|
|
actual fun doSmth() = ""
|
|
}
|
|
|
|
expect class ExpectClass2 {
|
|
fun doSmth(): String
|
|
} |