KT-11811 There is no intention "Make protected" for a val declared in parameters of constructor

#KT-11811 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-04-07 12:52:41 +03:00
parent a9fe999e0e
commit 6a65442095
6 changed files with 22 additions and 4 deletions
@@ -0,0 +1 @@
abstract class C(<caret>val p: Int)
@@ -0,0 +1 @@
abstract class C(<caret>protected val p: Int)
@@ -0,0 +1,2 @@
// IS_APPLICABLE: false
abstract class C(<caret>p: Int)