blob: c3658cfca674e0dd24b3220c28b36f1275db0244 [file] [log] [blame]
// REQUIRES: OS=macosx
// REQUIRES: objc_interop
// RUN: %target-swift-frontend -typecheck %s -F %S/mock-sdk -swift-version 3
// RUN: %empty-directory(%t)
// RUN: %target-swift-frontend -c -F %S/mock-sdk -api-diff-data-file %S/DoubleEditAPI.json -update-code -primary-file %s -emit-migrated-file-path %t/no_double_edit_ast_pass.result -swift-version 3 -o /dev/null
// RUN: diff -u %s.expected %t/no_double_edit_ast_pass.result
import Bar
class Derived : WillOverrideWithTypeChange {
func doThing(_ thing: ItemSet.some) -> ItemSet.some {
return ItemSet.some()
}
}