Fix tests: do not refer to removed things.

This commit is contained in:
Ilya Gorbunov
2016-09-13 01:11:01 +03:00
parent 660dc94f7c
commit 6656d10c67
3 changed files with 6 additions and 6 deletions
+4 -3
View File
@@ -1,5 +1,6 @@
package java.<caret>
package kotlin.<caret>
// EXIST: util, lang
// EXIST_JAVA_ONLY: awt
// EXIST: collections, sequences
// EXIST_JAVA_ONLY: concurrent
// EXIST_JS_ONLY: js
@@ -3,12 +3,12 @@ interface T {
}
fun foo(o: T) {
if (o is Runnable) {
if (o is Comparable<T>) {
o.<caret>
}
}
// EXIST: { itemText: "run", attributes: "bold" }
// EXIST: { itemText: "compareTo", attributes: "bold" }
// EXIST: { itemText: "f", attributes: "bold" }
// EXIST: { itemText: "hashCode", attributes: "" }
// EXIST: { itemText: "equals", attributes: "" }