blob: 9c6fef2ec467e09e13d3b4d4a7772fdbd50446c1 [file] [log] [blame]
fun bar(f: () -> Unit) = f()
fun foo() {
var v: Any
bar { v.hashCode() }
}