Change Signature: Fix primary constructor processing

This commit is contained in:
Alexey Sedunov
2015-06-15 15:24:31 +03:00
parent 64bbbac9dc
commit e1e818858e
4 changed files with 25 additions and 1 deletions
@@ -0,0 +1,7 @@
class A(n: Int) {
}
fun test() {
<caret>A(1)
}
@@ -0,0 +1,7 @@
class A() {
}
fun test() {
<caret>A()
}