mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
16 lines
191 B
Kotlin
Vendored
16 lines
191 B
Kotlin
Vendored
interface Test {
|
|
public open fun test()
|
|
public open val testProp : Int
|
|
}
|
|
|
|
class SomeTest : Test {
|
|
val hello = 12
|
|
<caret>
|
|
/**
|
|
* test
|
|
*/
|
|
fun some() {
|
|
|
|
}
|
|
}
|