Cleanup as36 patchset files (KTI-315)
This commit is contained in:
-21
@@ -1,21 +0,0 @@
|
||||
annotation class Ann1(val i: Int, val j: Int)
|
||||
|
||||
@Target(AnnotationTarget.PROPERTY)
|
||||
annotation class Ann2(val i: Int, val j: Int)
|
||||
|
||||
@Target(AnnotationTarget.FIELD)
|
||||
annotation class Ann3(val i: Int, val j: Int)
|
||||
|
||||
@Target(AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.FIELD, AnnotationTarget.PROPERTY)
|
||||
annotation class Ann4(val i: Int, val j: Int)
|
||||
|
||||
@Target(AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.FIELD)
|
||||
annotation class Ann5(val i: Int, val j: Int)
|
||||
|
||||
class Test(
|
||||
@get:Ann1(0, 0) @property:Ann1(1, 11) @Ann2(2, 22) @Ann3(3, 33) @property:Ann4(
|
||||
4,
|
||||
44
|
||||
) @field:Ann5(5, 55) val foo: String = ""
|
||||
) {
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
annotation class Annotation1(val a: Int = 0)
|
||||
annotation class Annotation2(val a: Int = 0)
|
||||
annotation class Annotation3(val a: Int = 0)
|
||||
|
||||
|
||||
class TestClass(
|
||||
private @property:Annotation1(42) @field:Annotation2(42) @Annotation1(42) @Annotation3(
|
||||
42
|
||||
) val text: String = "LoremIpsum"
|
||||
) {
|
||||
}
|
||||
Reference in New Issue
Block a user