Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/topLevelMembersInTwoFiles/b.kt
T
Evgeny Gerashchenko 479711e812 Moved current incremental compiler test data into subdirectory.
Tweaked test generator to avoid creating test methods for parent directory of tests.
2014-07-10 15:05:20 +04:00

25 lines
369 B
Kotlin

package test
fun bar(i: Int): String {
simpleVar = ":) " + simpleVar
return "$i ${quux()} $i"
}
fun quux(): String {
return "quux"
}
var simpleVar = prop1
var fieldlessVar: String
get() = ""
set(value) {}
deprecated("")
val fieldlessValWithAnnotation: String
get() = ""
var delegated: String by kotlin.properties.Delegates.notNull()