mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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.
55 lines
1.3 KiB
Swift
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{{.*}}(
|