Convert SyntheticMethodForAnnotatedPropertyGenTest to a box test

This commit is contained in:
Alexander Udalov
2019-12-30 16:29:15 +01:00
parent 8f30b25b24
commit cc0b231b3b
10 changed files with 68 additions and 104 deletions
@@ -1,7 +0,0 @@
@Retention(AnnotationRetention.RUNTIME)
annotation class SomeAnnotation(val value: String)
class A {
@SomeAnnotation("OK") val property: Int
get() = 42
}
@@ -1,6 +0,0 @@
@Retention(AnnotationRetention.RUNTIME)
annotation class SomeAnnotation(val value: String)
interface T {
@SomeAnnotation("OK") val property: Int
}
@@ -1,5 +0,0 @@
@Retention(AnnotationRetention.RUNTIME)
annotation class SomeAnnotation(val value: String)
@SomeAnnotation("OK") val property: Int
get() = 42