blob: 05e685d3d5d542866f4a2ad96205e30cf96ca3bf [file] [log] [blame]
package demo
internal class Test {
fun putInt(i: Int?) {}
fun test() {
val i = 10
putInt(i)
}
}