0881910a1b
^KT-63709 Fixed
15 lines
211 B
Kotlin
Vendored
15 lines
211 B
Kotlin
Vendored
// SKIP_TXT
|
|
// ISSUE: KT-63709
|
|
|
|
operator fun Int.invoke(unused: Int) {}
|
|
|
|
fun test1(a: Int?) {
|
|
<!UNSAFE_CALL!>a<!>(a!!)
|
|
}
|
|
|
|
fun test2(a: Int?) {
|
|
with (a) {
|
|
<!UNSAFE_CALL!>invoke<!>(this!!)
|
|
}
|
|
}
|