All bounds may be specified in 'where' clause

Exception fixed in AlternativeMethodSignatureData
This commit is contained in:
Andrey Breslav
2014-05-13 18:21:35 +04:00
parent 788994283e
commit 3a9f577d1d
8 changed files with 80 additions and 49 deletions
@@ -0,0 +1,9 @@
package test
import java.io.Serializable
public open class AllBoundsInWhen : Object() {
public open fun <T> foo() where T: Serializable {
throw UnsupportedOperationException()
}
}