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,5 +1,5 @@
// Sealed: to be implemented
actual sealed class Sealed {
actual sealed class Sealed actual constructor() {
actual object Obj : Sealed()
actual class Klass actual constructor(x: Int) : Sealed()