added issue names in tests

This commit is contained in:
Svetlana Isakova
2012-08-03 17:55:17 +04:00
parent 792cc63197
commit b24509577c
6 changed files with 7 additions and 0 deletions
@@ -1,3 +1,4 @@
//KT-702 Type inference failed
package a
//+JDK
@@ -1,3 +1,4 @@
//KT-731 Missing error from type inference
package a
class A<T>(x: T) {
@@ -1,3 +1,4 @@
//KT-742 Stack overflow in type inference
package a
class List<T>(val head: T, val tail: List<T>? = null)
@@ -1,3 +1,4 @@
//KT-832 Provide better diagnostics when type inference fails for an expression that returns a function
package a
fun fooT2<T>() : (t : T) -> T {
@@ -1,3 +1,4 @@
//KT-943 Type inference failed
package maze
//+JDK
@@ -1,3 +1,5 @@
//KT-948 Make type inference work with sure()/!!
package a
import java.util.*