16c38a2415
(actually made them lowest priority) #KT-12138 Fixed
12 lines
150 B
Kotlin
Vendored
12 lines
150 B
Kotlin
Vendored
fun foo(p: (Int) -> Unit) { }
|
|
|
|
fun fff1(p: Int): Nothing{}
|
|
fun fff2(p: Int): Unit{}
|
|
|
|
fun f() {
|
|
foo(::fff<caret>)
|
|
}
|
|
|
|
// ORDER: fff2
|
|
// ORDER: fff1
|