blob: 72a2e941b06bacb77cb5db7975400d1cf06a97bf [file] [log] [blame]
// REQUIRES: objc_interop
// RUN: %empty-directory(%t) && not %target-swift-frontend -c -update-code -primary-file %s -F %S/mock-sdk -api-diff-data-file %S/Inputs/API.json -emit-migrated-file-path %t/pre_fixit_pass.swift.result -o /dev/null
// RUN: diff -u %S/pre_fixit_pass.swift.expected %t/pre_fixit_pass.swift.result
import Bar
struct New {}
@available(*, unavailable, renamed: "New")
struct Old {}
Old()
func foo(_ a : PropertyUserInterface) {
a.setField(1)
a.setURL(1)
_ = a.field()
}