Files
kotlin-fork/idea/testData/formatter/UnnecessarySpacesInParametersLists.after.kt
T
2013-09-24 06:58:40 -07:00

6 lines
86 B
Kotlin

fun <T> test(a: Int) = {(a: Int) -> a }
class Test<T>
fun foo() {
test<Int>(12)
}