DescriptorRenderer: shouldn't render private modifier by default

#KT-31587 Fixed
This commit is contained in:
Dmitry Gridin
2019-10-01 21:26:08 +07:00
parent 847295bf1c
commit 9da6dcf840
5 changed files with 6 additions and 5 deletions
@@ -1,6 +1,6 @@
// My: to be implemented
// DISABLE-ERRORS
expect sealed class My private constructor(x: Double) {
expect sealed class My(x: Double) {
abstract val num: Int
open fun isGood(): Boolean