298a075381
Removed declaration for functions: TODO, run, with, apply, let.
10 lines
223 B
Kotlin
Vendored
10 lines
223 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
class My {
|
|
constructor(arg: Int?) {
|
|
run {
|
|
var x = arg
|
|
if (x == null) return@run
|
|
<!DEBUG_INFO_SMARTCAST!>x<!>.hashCode()
|
|
}
|
|
}
|
|
} |