Avatar
@swift-4.2.4 protocol P { var x: Any { get set } } struct S: P { var x: Any } let p: P = S(x: 42)