Files
kotlin-fork/compiler/tests-spec/testData/psi/templates/identifiers/variableDeclarationEntry.kt
T
2018-10-03 13:49:20 +03:00

16 lines
278 B
Kotlin
Vendored

fun f1() {
for (<!ELEMENT!>: Any in 0..10) {}
val x1 = {<!ELEMENT!>: Boolean ->
println("1")
}
val x2 = {<!ELEMENT!>: Boolean, <!ELEMENT!>: <!ELEMENT!> -> }
var <!ELEMENT!>: Boolean;
val x3 = fun(<!ELEMENT!>: Boolean) {
}(<!ELEMENT!>)
}