@@ -104,20 +104,28 @@ public extension CollectionLikeSequence {
104
104
105
105
// Also make the lazy sequences a CollectionLikeSequence if the underlying sequence is one.
106
106
107
- extension LazySequence : CollectionLikeSequence ,
108
- FormattedLikeArray , CustomStringConvertible , CustomReflectable
107
+ extension LazySequence : /*@retroactive*/ SIL . CollectionLikeSequence ,
108
+ /*@retroactive*/ SIL . FormattedLikeArray ,
109
+ /*@retroactive*/ Swift . CustomStringConvertible ,
110
+ /*@retroactive*/ Swift . CustomReflectable
109
111
where Base: CollectionLikeSequence { }
110
112
111
- extension FlattenSequence : CollectionLikeSequence ,
112
- FormattedLikeArray , CustomStringConvertible , CustomReflectable
113
+ extension FlattenSequence : /*@retroactive*/ SIL . CollectionLikeSequence ,
114
+ /*@retroactive*/ SIL . FormattedLikeArray ,
115
+ /*@retroactive*/ Swift . CustomStringConvertible ,
116
+ /*@retroactive*/ Swift . CustomReflectable
113
117
where Base: CollectionLikeSequence { }
114
118
115
- extension LazyMapSequence : CollectionLikeSequence ,
116
- FormattedLikeArray , CustomStringConvertible , CustomReflectable
119
+ extension LazyMapSequence : /*@retroactive*/ SIL . CollectionLikeSequence ,
120
+ /*@retroactive*/ SIL . FormattedLikeArray ,
121
+ /*@retroactive*/ Swift . CustomStringConvertible ,
122
+ /*@retroactive*/ Swift . CustomReflectable
117
123
where Base: CollectionLikeSequence { }
118
124
119
- extension LazyFilterSequence : CollectionLikeSequence ,
120
- FormattedLikeArray , CustomStringConvertible , CustomReflectable
125
+ extension LazyFilterSequence : /*@retroactive*/ SIL . CollectionLikeSequence ,
126
+ /*@retroactive*/ SIL . FormattedLikeArray ,
127
+ /*@retroactive*/ Swift . CustomStringConvertible ,
128
+ /*@retroactive*/ Swift . CustomReflectable
121
129
where Base: CollectionLikeSequence { }
122
130
123
131
//===----------------------------------------------------------------------===//
0 commit comments