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,10 @@
class A {
constructor(x: Int) {
}
constructor(x: Double, y: String = "abc") {
}
}
<caret>A(1.0)