11 lines
165 B
Kotlin
Vendored
11 lines
165 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun foo(s: String) {}
|
|
fun foo(i: Long) {}
|
|
|
|
fun bar(f: (Boolean) -> Unit) {}
|
|
|
|
fun test() {
|
|
bar(::<!NONE_APPLICABLE!>foo<!>)
|
|
}
|