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

10 lines
116 B
Plaintext
Vendored

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