Moving test data into subfolders

This commit is contained in:
Valentin Kipyatkov
2015-08-13 15:56:03 +03:00
parent 9546e46ae0
commit 13fc12bbae
34 changed files with 456 additions and 384 deletions
@@ -0,0 +1,6 @@
class Xyz
fun X<caret>
// INVOCATION_COUNT: 0
// EXIST: Xyz
@@ -0,0 +1,8 @@
fun Strange(){}
fun Annotations<S<caret>
// INVOCATION_COUNT: 0
// EXIST: String
// EXIST: Set
// ABSENT: Strange
@@ -0,0 +1,7 @@
fun Strange(){}
fun Map<() -> Unit, Str<caret>
// INVOCATION_COUNT: 0
// EXIST: String
// ABSENT: Strange
@@ -0,0 +1,4 @@
val v = 1.<caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,9 @@
fun test() {
val <caret>
}
// INVOCATION_COUNT: 0
// NUMBER: 0
/* KT-4158 Type "var i" and press space. "var if" is auto-inserted. */
@@ -0,0 +1,8 @@
class Outer {
class Nested
}
fun Outer.<caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,4 @@
fun f<caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,8 @@
class Outer {
class Nested
}
fun <T> Outer.<caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,4 @@
fun <T> <caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,4 @@
val <T> <caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,4 @@
var <T> a<caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,6 @@
var <caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
/* KT-4158 Type "var i" and press space. "var if" is auto-inserted. */
@@ -0,0 +1,10 @@
object O {
private val zzzz = 0
}
fun foo() {
O.z<caret>
}
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,9 @@
package first
fun firstFun() {
val a = In<caret>
}
// INVOCATION_COUNT: 0
// EXIST: { lookupString:"Int", tailText:" (kotlin)" }
// ABSENT: { lookupString:"IntRef", tailText:" (kotlin.internal.Ref)" }