3d8d92c7d3
- test data files renamed from *.jet to *.kt
16 lines
180 B
Kotlin
Vendored
16 lines
180 B
Kotlin
Vendored
//KT-2317 Wrong UNNECESSARY_SAFE_CALL
|
|
|
|
package kt2317
|
|
|
|
fun Any?.baz() = 1
|
|
|
|
fun foo(l: Long?) = l?.baz()
|
|
|
|
|
|
fun Any?.bar(): Unit { }
|
|
|
|
fun quux(x: Int?): Unit {
|
|
x?.baz()
|
|
x?.bar()
|
|
}
|