mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
10 lines
164 B
Kotlin
Vendored
10 lines
164 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
operator fun String.invoke(i: Int) {}
|
|
|
|
fun foo(s: String?) {
|
|
<!UNSAFE_CALL!>s<!>(1)
|
|
|
|
<!UNSAFE_CALL!>(s ?: null)<!>(1)
|
|
}
|