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,8 @@
// "Make foo internal" "true"
// ERROR: Cannot access 'foo': it is 'private' in 'First'
package test
class Second(val f: First) {
fun bar() = f.<caret>foo()
}