mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
276 B
Swift
12 lines
276 B
Swift
// RUN: %swift-ide-test -code-completion -code-completion-token=COMPLETE -source-filename %s
|
|
|
|
// https://github.com/apple/swift/issues/56100
|
|
|
|
extension Result {
|
|
public init(_ value: Success?) {
|
|
self = value.map(#^COMPLETE^#)
|
|
}
|
|
}
|
|
|
|
public func materialize<T>(_ f: T) {}
|