Files
swift-mirror/test/embedded/keypath-crash.swift
Allan Shortlidge 9302cbe568 Sema: Diagnose @dynamicMemberLookup subscripts that are not accessible enough.
Since this is a source breaking change, downgrade the diagnostic to a warning
until the next language version unless library evolution is enabled, in which
case this would have resulted in a broken `.swiftinterface` and it therefore
makes sense to diagnose eagerly.

Resolves rdar://156919010.
2025-07-28 22:36:39 -07:00

55 lines
1.3 KiB
Swift

// RUN: %target-swift-emit-ir %s -module-name=main -enable-experimental-feature Embedded | %FileCheck %s
// REQUIRES: swift_in_compiler
// REQUIRES: swift_feature_Embedded
@propertyWrapper
@dynamicMemberLookup
public struct Binding<Value> {
public var wrappedValue: Value
init(get: @escaping () -> Value, set: @escaping (Value) -> Void) {
self.wrappedValue = get()
}
public subscript<Subject>(dynamicMember keyPath: WritableKeyPath<Value, Subject>) -> Binding<Subject> {
get { fatalError() }
}
}
public struct State<Wrapped> {
public var wrappedValue: Wrapped
public init(wrappedValue: Wrapped) {
self.wrappedValue = wrappedValue
}
public var projectedValue: Projection {
Projection(wrappedValue: wrappedValue)
}
@dynamicMemberLookup
public struct Projection {
var wrappedValue: Wrapped
public subscript<Member>(dynamicMember keyPath: ReferenceWritableKeyPath<Wrapped, Member>) -> Binding<Member> where Wrapped: AnyObject {
Binding(get: {
wrappedValue[keyPath: keyPath]
}, set: { newValue in
wrappedValue[keyPath: keyPath] = newValue
})
}
}
}
public struct S<T> {
public private(set) subscript(x: Int) -> Int {
get {
return 27
}
mutating set {
}
}
}
// CHECK: define {{.*}}@{{_*}}main{{.*}}(