f3c2dd0526
So #KT-24165 Fixed
8 lines
141 B
Plaintext
Vendored
8 lines
141 B
Plaintext
Vendored
// "Replace with 'FOO'" "true"
|
|
|
|
const val FOO = 1
|
|
@Deprecated("always const", ReplaceWith("FOO"))
|
|
fun foo() = 1
|
|
fun test(){
|
|
val x = FOO
|
|
} |