mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Inserts the synthesized implementation. As part of this, fix some ASTPrinter bugs. rdar://87904700
16 lines
240 B
Plaintext
16 lines
240 B
Plaintext
|
|
struct User: Codable {
|
|
|
|
enum CodingKeys: CodingKey {
|
|
}
|
|
|
|
init(from decoder: Decoder) throws {
|
|
|
|
}
|
|
|
|
func encode(to encoder: Encoder) throws {
|
|
var container = encoder.container(keyedBy: User.CodingKeys.self)
|
|
|
|
}
|
|
}
|