Fixed generated text from jvm classfile, when quotes is required

#KT-34759 Fixed
This commit is contained in:
Alexander Podkhalyuzin
2020-03-04 15:08:57 +03:00
parent 36ec0a2e2e
commit 5bb74d9840
4 changed files with 35 additions and 1 deletions
@@ -0,0 +1,9 @@
package test
class EnumWithQuotes {
internal class B {
private enum class Zoo {
Bear, `Bear+`, `Polar Bear`, Panda
}
}
}