blob: 3fd5bae524196e4a52530c1993c3c2af8a8fcb7d [file] [log] [blame]
// "Replace with 'FOO'" "true"
const val FOO = 1
@Deprecated("always const", ReplaceWith("FOO"))
fun foo() = 1
fun test(){
val x = FOO
}