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
7 lines
263 B
Swift
7 lines
263 B
Swift
// RUN: rm -rf %t.result && mkdir -p %t.result
|
|
|
|
struct User: Codable {
|
|
}
|
|
// RUN: %refactor -add-explicit-codable-implementation -source-filename %s -pos=3:8 > %t.result/codable.swift
|
|
// RUN: diff -u %S/Outputs/empty/codable.swift.expected %t.result/codable.swift
|