9 lines
96 B
Kotlin
9 lines
96 B
Kotlin
package demo
|
|
|
|
class Test(i: Int?) {
|
|
|
|
fun test() {
|
|
val i = 10
|
|
Test(i)
|
|
}
|
|
} |