File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ func _deallocateUninitializedArray<Element>(
68
68
#if !INTERNAL_CHECKS_ENABLED
69
69
@_alwaysEmitIntoClient
70
70
@_semantics ( " array.finalize_intrinsic " )
71
- @_effects ( readnone)
71
+ @_effects ( readnone) @ _effects ( releasenone )
72
72
@_effects ( escaping array. value** => return. value**)
73
73
@_effects ( escaping array. value**. class*. value** => return. value**. class*. value**)
74
74
public // COMPILER_INTRINSIC
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ extension _SmallString {
345
345
extension _SmallString {
346
346
// Resiliently create from a tagged cocoa string
347
347
//
348
- @_effects ( readonly) // @opaque
348
+ @_effects ( readonly) @ _effects ( releasenone ) // @opaque
349
349
@usableFromInline // testable
350
350
internal init ? ( taggedCocoa cocoa: AnyObject ) {
351
351
self . init ( )
@@ -367,7 +367,7 @@ extension _SmallString {
367
367
self . _invariantCheck ( )
368
368
}
369
369
370
- @_effects ( readonly) // @opaque
370
+ @_effects ( readonly) @ _effects ( releasenone ) // @opaque
371
371
internal init ? ( taggedASCIICocoa cocoa: AnyObject ) {
372
372
self . init ( )
373
373
var success = true
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ extension String {
230
230
/// print(message)
231
231
/// // Prints "If one cookie costs 2 dollars, 3 cookies cost 6 dollars."
232
232
@inlinable
233
- @_effects ( readonly)
233
+ @_effects ( readonly) @ _effects ( releasenone )
234
234
public init ( stringInterpolation: DefaultStringInterpolation ) {
235
235
self = stringInterpolation. make ( )
236
236
}
@@ -254,7 +254,7 @@ extension Substring {
254
254
/// print(message)
255
255
/// // Prints "If one cookie costs 2 dollars, 3 cookies cost 6 dollars."
256
256
@inlinable
257
- @_effects ( readonly)
257
+ @_effects ( readonly) @ _effects ( releasenone )
258
258
public init ( stringInterpolation: DefaultStringInterpolation ) {
259
259
self . init ( stringInterpolation. make ( ) )
260
260
}
You can’t perform that action at this time.
0 commit comments