Fixed the expected test result for OverrideImplementTest#testFunctionWithTypeParameters.

This commit is contained in:
Zalim Bashorov
2013-06-11 15:50:16 +04:00
parent 9e4f01319b
commit 1e0f926d39
@@ -4,7 +4,7 @@ trait Trait {
class TraitImpl : Trait {
override fun <A, B: Runnable, E: Map.Entry<A, B>> foo() where B: Cloneable, B: Comparable<B> {
override fun <A, B : Runnable, E : Map.Entry<A, B>> foo() where B : Cloneable, B : Comparable<B> {
throw UnsupportedOperationException()
}
}