Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
replaceJvmFieldWithConst
/
companionInInterface.kt.after
blob: 8dafd3c4ecac4bbc89e08085db23a60ce0ea5043 [
file
]
// "Replace '@JvmField' with 'const'" "true"
// WITH_RUNTIME
// LANGUAGE_VERSION: 1.2
interface
IFace
{
companion
object
{
const
val a
=
"Lorem ipsum"
}
}