d98d8cfa7f
Functions are final by default in plugin mode
9 lines
112 B
Kotlin
9 lines
112 B
Kotlin
package demo
|
|
class Test() {
|
|
fun getInteger(i : Int) : Int {
|
|
return i
|
|
}
|
|
fun test() {
|
|
val i = getInteger(10)!!
|
|
}
|
|
} |