-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathkeypath-crash.swift
54 lines (44 loc) · 1.27 KB
/
keypath-crash.swift
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
// 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()
}
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(