1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
// RUN: %batch-code-completion
// https://github.com/apple/swift/issues/57041
public protocol View2 {
associatedtype Body : View2
@ViewBuilder2 var body: Self.Body { get }
}
extension View2 {
@inlinable public func frame(width: Int? = nil, height: Int? = nil) -> Never { fatalError() }
}
extension Never : View2 {}
extension Optional : View2 where Wrapped: View2 {
public var body: Never {
fatalError()
}
}
@resultBuilder public struct ViewBuilder2 {
public static func buildBlock() -> Never { fatalError() }
public static func buildBlock<Content>(_ content: Content) -> Content where Content : View2 { fatalError() }
public static func buildIf<Content>(_ content: Content?) -> Content? where Content : View2 { fatalError() }
public static func buildBlock<C0, C1>(_ c0: C0, _ c1: C1) -> Never where C0 : View2, C1 : View2 { fatalError() }
}
public enum OutlineMenu2: Int {
case popular
}
public struct OutlineRow : View2 {
let item: OutlineMenu2
public var body: some View2 {
fatalError()
}
}
public struct ForEach2<Content> {
public var data: [OutlineMenu2]
public var content: (OutlineMenu2) -> Content
}
extension ForEach2 : View2 {
public var body: Never {
fatalError()
}
public typealias Body = Never
}
extension ForEach2 where Content : View2 {
public init(_ data: [OutlineMenu2], @ViewBuilder2 content: @escaping (OutlineMenu2) -> Content) {
fatalError()
}
}
struct SplitView: View2 {
var body: some View2 {
ForEach2([OutlineMenu2.popular]) { menu in
OutlineRow(item: menu)
.#^COMPLETE^#frame(height: 50)
if true {
}
}
}
}
// COMPLETE-DAG: Decl[InstanceMethod]/Super/TypeRelation[Convertible]: frame()[#Never#]; name=frame()
// COMPLETE-DAG: Decl[InstanceMethod]/Super/TypeRelation[Convertible]: frame({#width: Int?#}, {#height: Int?#})[#Never#]; name=frame(width:height:)
|