Files
swift-mirror/test/SourceKit/CursorInfo/issue-79696.swift
Hamish Knight f524691cdf [IDE] Avoid inferring container type for implicit expressions
For e.g implicit `buildExpression` calls, we have a location that
matches the argument, but we don't want to consider the result
builder type as the container type.
2025-02-28 21:00:12 +00:00

24 lines
672 B
Swift

@resultBuilder
struct Builder {
static func buildBlock<T>(_ x: T) -> T { x }
static func buildExpression<T>(_ x: T) -> T { x }
}
// https://github.com/swiftlang/swift/issues/79696
// Make sure we don't pick up the builder as the container type.
struct A {
struct B {
@Builder
var foo: Any {
B
// RUN: %sourcekitd-test -req=cursor -pos=%(line-1):7 %s -- %s | %FileCheck %s --check-prefix NESTED_TY
// NESTED_TY-NOT: Container
}
@Builder var bar: Any {
foo
// RUN: %sourcekitd-test -req=cursor -pos=%(line-1):7 %s -- %s | %FileCheck %s --check-prefix PROP
// PROP: <Container>$s4main1AV1BVD</Container>
}
}
}