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,2 +1,2 @@
// INTENTION_TEXT: Make primary constructor private
class C<caret> private (val v: Int)
class C<caret> private constructor(val v: Int)