gildor
fun main(args: Array<String>) { foo<String?>("bar", null) } fun <T> foo(t: T, z: T?) { print(t?.hashCode()) }