62d8153ada
Change testData for deprecated annotation #KT-2947 Fixed
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
|