Scratch tests: add check for toolwindow output

This commit is contained in:
Natalia Selezneva
2018-05-16 13:18:22 +03:00
parent bce0a77a94
commit a505a948d2
7 changed files with 65 additions and 10 deletions
+7 -1
View File
@@ -4,4 +4,10 @@ foo.forEach { // ERROR: Unresolved reference: foo; Cannot choose among
fun goo(a: String) { // ERROR: Unresolved reference: goo
super.goo(a)
}
}
/** Unresolved reference: foo */
/** Cannot choose among the following candidates without completing type inference:
@HidesMembers public inline fun <T> Iterable<???>.forEach(action: (???) -> Unit): Unit defined in kotlin.collections
@HidesMembers public inline fun <K, V> Map<out ???, ???>.forEach(action: (Map.Entry<???, ???>) -> Unit): Unit defined in kotlin.collections */
/** Unresolved reference: goo */
/** Compilation Error */