[FIR-TEST] Add new testdata generated after changes in previous commit

This commit is contained in:
Dmitriy Novozhilov
2019-12-11 16:16:22 +03:00
parent e9c02a1cca
commit 2536fa0cd5
4578 changed files with 104067 additions and 1 deletions
@@ -0,0 +1,68 @@
// !WITH_NEW_INFERENCE
package a
interface A
fun <T> emptyList(): List<T> = throw Exception()
fun test1() {
emptyList()
}
//--------------
fun <T: A> emptyListOfA(): List<T> = throw Exception()
fun test2() {
emptyListOfA()
}
//--------------
fun <T: A, R: T> emptyStrangeMap(): Map<T, R> = throw Exception()
fun test3() {
emptyStrangeMap()
}
//--------------
fun <T, R: T> emptyStrangeMap1(t: T): Map<T, R> = throw Exception("$t")
fun test4() {
emptyStrangeMap1(1)
}
//--------------
fun <T: A, R> emptyStrangeMap2(t: T): Map<T, R> where R: T = throw Exception("$t")
fun test5(a: A) {
emptyStrangeMap2(a)
}
//--------------
fun <T: A, R: T> emptyStrangeMap3(r: R): Map<T, R> = throw Exception("$r")
fun test6(a: A) {
emptyStrangeMap3(a)
}
//--------------
fun <T, R: T> emptyStrangeMap4(l: MutableList<T>): Map<T, R> = throw Exception("$l")
fun test7(list: MutableList<Int>) {
emptyStrangeMap4(list)
}
//--------------
fun test7() : Map<A, A> = emptyStrangeMap()
//--------------
fun <U, V: U> foo(): U = throw Exception()
fun test8(): Int = foo()