KT-11806: increase visibility quick fix, private --> internal, also for members

This commit is contained in:
Mikhail Glukhikh
2016-04-08 16:22:33 +03:00
parent 2098bed86d
commit f12a9b7b95
9 changed files with 84 additions and 10 deletions
@@ -0,0 +1,6 @@
// "Make x internal" "true"
class First(private val x: Int)
class Second(f: First) {
val y = f.<caret>x
}