11 lines
153 B
Kotlin
Vendored
11 lines
153 B
Kotlin
Vendored
package demo
|
|
|
|
internal class Test {
|
|
fun getInteger(i: Int?): Int? {
|
|
return i
|
|
}
|
|
|
|
fun test() {
|
|
val i = getInteger(10)!!
|
|
}
|
|
} |