[Analysis API] add testcases, add comments to tests

This commit is contained in:
Ilya Kirillov
2022-06-15 17:27:10 +02:00
parent 3ea2232591
commit d8b88e9b69
5 changed files with 39 additions and 2 deletions
@@ -1,3 +1,4 @@
// SUBSTITUTOR: T -> kotlin.collections.List<S>, S -> kotlin.Long
// the test checks that function own type parameters (`S` in this test) won't be substituted recursively
fun <T, S> f<caret>oo(x: List<T>, y: Map<T, List<S>>, k: String): T
fun <T, S> f<caret>oo(x: List<T>, y: Map<T, List<S>>, k: String): T
@@ -1,3 +1,5 @@
// the test checks that function own type parameters (`S` in this test) won't be substituted recursively
// SUBSTITUTOR: T -> kotlin.collections.List<S>, S -> kotlin.Long
fun <T, S> f<caret>oo(x: List<T>, y: Map<T, List<S>>, k: String): T