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,19 @@
// IntelliJ API Decompiler stub source generated from a class file
// Implementation of methods is not available
package test
public final class EnumWithQuotes public constructor() {
internal final class B public constructor() {
private final enum class Zoo private constructor() : kotlin.Enum<test.EnumWithQuotes.B.Zoo> {
Bear,
`Bear+`,
`Polar Bear`,
Panda;
}
}
}
@@ -0,0 +1,9 @@
package test
class EnumWithQuotes {
internal class B {
private enum class Zoo {
Bear, `Bear+`, `Polar Bear`, Panda
}
}
}