mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
366 B
Swift
11 lines
366 B
Swift
// RUN: %target-swift-ide-test -code-completion -code-completion-token=COMPLETE -source-filename=%s
|
|
|
|
// https://github.com/apple/swift/issues/50992
|
|
|
|
public func headers() -> [AnyHashable: String]? { fatalError() }
|
|
public var httpAdditionalHeaders: [AnyHashable : Any]?
|
|
|
|
if let userAgentHeaders = headers() {
|
|
httpAdditionalHeaders = userAgentHeaders #^COMPLETE^#
|
|
}
|