Parser: Fix recovery of constructor parameter list

#KT-4739 Fixed
This commit is contained in:
Alexey Sedunov
2014-03-24 18:21:34 +04:00
parent 028a71273c
commit 5d4527d7aa
4 changed files with 147 additions and 1 deletions
@@ -0,0 +1,7 @@
class Test(val a: Int var b: Int val c: Int) {
override fun toString() = "$a $b $c"
}
fun test(val a: Int var b: Int val c: Int) {
}