Fixed misused "variance" word.

This commit is contained in:
Evgeny Gerashchenko
2013-02-15 19:14:11 +04:00
parent 19bc28b29d
commit 1de5da1e8a
9 changed files with 28 additions and 28 deletions
@@ -0,0 +1,12 @@
package test;
import java.util.*;
import jet.runtime.typeinfo.KotlinSignature;
public class CustomProjectionKind {
@KotlinSignature("fun foo(): MutableList<out Number>")
public List<Number> foo() {
throw new UnsupportedOperationException();
}
}