Escaped enum case identifier compilation issue due to initializer ambiguity

I was trying to add an enum case init, which is escaped but the compiler is getting confused with the default -init(rawValue:) initializer.

Is that a compiler issue or just the way escaped identifiers are expected to work?

public enum ExampleEnum: String {
    case `init`
}