Merge remote branch 'origin/master'

This commit is contained in:
Dmitry Jemerov
2011-05-27 17:46:24 +04:00
40 changed files with 633 additions and 152 deletions
@@ -178,6 +178,7 @@ public class JetTestUtils {
public Collection<JetDiagnostic> getDiagnostics() {
throw new UnsupportedOperationException(); // TODO
}
};
}
};
@@ -277,6 +277,8 @@ public class JetTypeCheckerTest extends LightDaemonAnalyzerTestCase {
assertSubtype("Derived_T<Int>", "Base_T<in Int>");
assertSubtype("MDerived_T<Int>", "Base_T<in Int>");
assertSubtype("ArrayList<Int>", "List<in Int>");
assertSubtype("Integer", "java.lang.Comparable<Integer>?");
}
public void testNullable() throws Exception {