Apply quick-fix "Make visible" for INVISIBLE_FAKE #KT-16131 Fixed

This commit is contained in:
shiraji
2017-03-11 00:55:37 +09:00
committed by Mikhail Glukhikh
parent d4500878cb
commit 27e1462b00
11 changed files with 128 additions and 2 deletions
@@ -0,0 +1,12 @@
// "Make 'doSth' public" "true"
open class A {
private fun doSth() {
}
}
class B : A() {
fun bar() {
<caret>doSth()
}
}