9dda5e4fcd
KT-56177
41 lines
924 B
Kotlin
Vendored
41 lines
924 B
Kotlin
Vendored
val v1: String
|
|
@Deprecated("", level = DeprecationLevel.HIDDEN)
|
|
get() = ""
|
|
|
|
@Deprecated("", level = DeprecationLevel.HIDDEN)
|
|
val v2 = ""
|
|
|
|
var v3: String
|
|
@Deprecated("", level = DeprecationLevel.HIDDEN)
|
|
get() = ""
|
|
set(value) {}
|
|
|
|
var v4: String
|
|
get() = ""
|
|
@Deprecated("", level = DeprecationLevel.HIDDEN)
|
|
set(value) {}
|
|
|
|
var v5: String
|
|
@Deprecated("", level = DeprecationLevel.HIDDEN)
|
|
get() = ""
|
|
@Deprecated("", level = DeprecationLevel.HIDDEN)
|
|
set(value) {}
|
|
|
|
@Deprecated("", level = DeprecationLevel.HIDDEN)
|
|
var v6: String
|
|
get() = ""
|
|
set(value) {}
|
|
|
|
fun test() {
|
|
<!UNRESOLVED_REFERENCE!>v1<!>
|
|
<!UNRESOLVED_REFERENCE!>v2<!>
|
|
<!UNRESOLVED_REFERENCE!>v3<!>
|
|
v3 = ""
|
|
v4
|
|
<!UNRESOLVED_REFERENCE!>v4<!> = ""
|
|
<!UNRESOLVED_REFERENCE!>v5<!>
|
|
<!UNRESOLVED_REFERENCE!>v5<!> = ""
|
|
<!UNRESOLVED_REFERENCE!>v6<!>
|
|
<!UNRESOLVED_REFERENCE!>v6<!> = ""
|
|
}
|