Change Signature: Add/remove constructor keyword on primary constructor when changing modifier list

This commit is contained in:
Alexey Sedunov
2015-09-07 18:58:25 +03:00
parent aa1de706c1
commit 794127a38b
12 changed files with 53 additions and 25 deletions
@@ -1,4 +1,4 @@
class C1 protected (val x: Any) {}
class C1 protected constructor(val x: Any) {}
fun f() {
val c = C1(12);