You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/api-digester/stability-stdlib-abi-without-asserts.test
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,14 @@ Func AnySequence.map(_:) has been renamed to Func __rethrows_map(_:)
88
88
Func AnySequence.map(_:) has mangled name changing from 'Swift.AnySequence.map<A>((A) throws -> A1) throws -> Swift.Array<A1>' to 'Swift.AnySequence.__rethrows_map<A>((A) throws -> A1) throws -> Swift.Array<A1>'
89
89
Func AnySequence.map(_:) is now without @rethrows
90
90
91
+
// These are using
92
+
Func Sequence.map(_:) has been renamed to Func __rethrows_map(_:)
93
+
Func Sequence.map(_:) has mangled name changing from '(extension in Swift):Swift.Sequence.map<A>((A.Element) throws -> A1) throws -> Swift.Array<A1>' to '(extension in Swift):Swift.Sequence.__rethrows_map<A>((A.Element) throws -> A1) throws -> Swift.Array<A1>'
94
+
Func Sequence.map(_:) is now without @rethrows
95
+
Func Collection.map(_:) has been renamed to Func __rethrows_map(_:)
96
+
Func Collection.map(_:) has mangled name changing from '(extension in Swift):Swift.Collection.map<A>((A.Element) throws -> A1) throws -> Swift.Array<A1>' to '(extension in Swift):Swift.Collection.__rethrows_map<A>((A.Element) throws -> A1) throws -> Swift.Array<A1>'
97
+
Func Collection.map(_:) is now without @rethrows
98
+
91
99
// These haven't actually been removed; they are simply marked unavailable.
92
100
// This seems to be a false positive in the ABI checker. This is not an ABI
93
101
// break because the symbols are still present, and is not a source break
0 commit comments