Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/constantsUnchanged/const.kt
T
2015-10-18 22:49:08 +03:00

10 lines
116 B
Kotlin
Vendored

package test
const val CONST = "foo"
class Klass {
companion object {
const val CONST = "bar"
}
}