Files
kotlin-fork/idea/idea-completion/testData/weighers/basic/PropertiesBeforeKeywords.kt
T
Valentin Kipyatkov bb808b5620 Created module idea-test-framework and moved classes needed for idea tests there
Moved tests for completion and their test data into module idea-completion
2015-04-14 18:53:01 +03:00

21 lines
347 B
Kotlin
Vendored

val br1 = 11
fun br() = 111
class Test(val br2 = 12) {
val br3 = 13
fun brf() = 112
fun test(br4: Int) {
while (true) {
val br5 = 14
br<caret>
}
}
}
// "br" function is before other elements because of exact prefix match
// ORDER: br, br4, br5, br2, br3, brf, br1, break
// SELECTED: 0