Files
kotlin-fork/compiler/testData/psi/functionReceivers/FunctionsWithFunctionReceiversAnnotations.kt
T
2014-10-30 16:47:03 +03:00

6 lines
193 B
Kotlin

fun ([a] T<T>.(A<B>) -> Unit).foo()
fun ([a] T<T>.(A<B>) -> C<D, E>).foo();
fun [a] ([a] T<T>.(A<B>) -> R).foo() {}
fun <A, B> [a] (() -> Unit).foo()
[a] fun <A, B> [a] ((A, B) -> Unit).foo()