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