Secondary constructors resolve

This commit is contained in:
Denis Zharkov
2015-02-02 12:44:32 +03:00
parent 8305d73682
commit b2cecf1dd0
38 changed files with 655 additions and 5 deletions
@@ -0,0 +1,5 @@
class A<T, R> {
constructor(x: T) {}
}
val y = <caret>A<Int, String>(1)