Files
swift-mirror/test/refactoring/AddCodableImplementation/Outputs/empty/codable.swift.expected

16 lines
248 B
Plaintext

struct User: Codable {
enum CodingKeys: CodingKey {
}
init(from decoder: any Decoder) throws {
}
func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: User.CodingKeys.self)
}
}