protocol SomeProtocol { var mustBeSettable: String { get set } } class Stage1: SomeProtocol { //Here "mustBeSettable" should be {get set} } class