mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
10 lines
205 B
Kotlin
10 lines
205 B
Kotlin
class MyClass() {
|
|
var test = 1
|
|
[deprecated("")] set(i: Int) { test = i }
|
|
}
|
|
|
|
|
|
// TESTED_OBJECT_KIND: function
|
|
// TESTED_OBJECTS: MyClass, setTest
|
|
// FLAGS: ACC_DEPRECATED, ACC_PUBLIC, ACC_FINAL
|