blob: 6753801ab96e46499db554b6a13a4aa51826c2df [file] [log] [blame]
internal class Test {
fun putInt(i: Int) {}
fun test() {
val b = 10
putInt(b)
}
}