Constructors (all but Java) work, a draft version

This commit is contained in:
Andrey Breslav
2011-03-21 17:37:34 +03:00
parent e4fcb756a3
commit 0340e9623c
29 changed files with 523 additions and 139 deletions
@@ -331,9 +331,9 @@ public class JetTypeCheckerTest extends LightDaemonAnalyzerTestCase {
assertType("new Properties().p", "Int");
assertType("new Props<Int>().p", "Int");
assertType("new Props<out Int>().p", "Int");
assertErrorType("new Props<in Int>().p");
assertType("new Props<Properties>().p.p", "Int");
assertErrorType("new Props<in Int>().p");
}
public void testOverloads() throws Exception {