mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
We're not ready to start emitting warnings when type-checking modules from interface. It is causing performance regressions and spurious diagnostics to be emitted. Reverts a small part of https://github.com/swiftlang/swift/pull/80360. Resolves rdar://148257136.
10 lines
261 B
Plaintext
10 lines
261 B
Plaintext
// swift-interface-format-version: 1.0
|
|
// swift-module-flags:
|
|
|
|
// RUN: %target-swift-typecheck-module-from-interface(%s) -module-name Test -verify -verify-ignore-unknown
|
|
// REQUIRES: OS=macosx
|
|
|
|
extension Array {
|
|
@_hasStorage public var foo: Int { get set }
|
|
}
|