[Commonizer] Drop useless annotation tests

^KMM-238
^KMM-53
This commit is contained in:
Dmitriy Dolovov
2020-06-08 15:51:26 +07:00
parent 596363ea23
commit 611946a7c7
5 changed files with 0 additions and 53 deletions
@@ -1,9 +1,6 @@
expect annotation class CommonAnnotationForAnnotationClassesOnly(text: String) { val text: String }
expect annotation class CommonAnnotation(text: String) { val text: String }
//expect annotation class CommonOuterAnnotation(inner: CommonInnerAnnotation) { val inner: CommonInnerAnnotation }
//expect annotation class CommonInnerAnnotation(text: String) { val text: String }
expect var propertyWithoutBackingField: Double
expect val propertyWithBackingField: Double
expect val propertyWithDelegateField: Int
@@ -15,5 +12,3 @@ expect fun <Q : Number> Q.function2(): Q
expect class AnnotatedClass(value: String) { val value: String }
typealias AnnotatedLiftedUpTypeAlias = AnnotatedClass
expect class AnnotatedNonLiftedUpTypeAlias
//expect object ObjectWithNestedAnnotations