Moved tests

This commit is contained in:
Valentin Kipyatkov
2016-10-10 16:27:10 +03:00
parent 16a0c55c6c
commit 0c14058d13
7 changed files with 27 additions and 18 deletions
@@ -0,0 +1,10 @@
package some
annotation class AnnComplete
class Multiplier {
@get:[A<caret>]
var property = 0
}
// ELEMENT: AnnComplete
@@ -0,0 +1,10 @@
package some
annotation class AnnComplete
class Multiplier {
@get:[AnnComplete<caret>]
var property = 0
}
// ELEMENT: AnnComplete
@@ -0,0 +1,5 @@
class A {
@Inh<caret>
}
// ELEMENT: Inherited
@@ -0,0 +1,7 @@
import java.lang.annotation.Inherited
class A {
@Inherited<caret>
}
// ELEMENT: Inherited
@@ -0,0 +1,9 @@
import java.lang.annotation.Inherited
class A {
companion object {
@Inh<caret>
}
}
// ELEMENT: Inherited
@@ -0,0 +1,9 @@
import java.lang.annotation.Inherited
class A {
companion object {
@Inherited<caret>
}
}
// ELEMENT: Inherited