class Box(t: T) { var value = t } fun main(args: Array) { val box: Box = Box(17) println(box.value) }