File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ extension String {
89
89
/// print(String(s1.utf8.prefix(15))!)
90
90
/// // Prints "They call me 'B"
91
91
@frozen
92
- @_addressableForDependencies
93
92
public struct UTF8View : Sendable {
94
93
@usableFromInline
95
94
internal var _guts : _StringGuts
@@ -344,6 +343,7 @@ extension String.UTF8View {
344
343
let a = Builtin . addressOfBorrow ( self )
345
344
let address = unsafe UnsafePointer< UTF8 . CodeUnit > ( a)
346
345
let span = unsafe Span( _unsafeStart: address, count: count)
346
+ fatalError ( " Span over the small string form is not supported yet. " )
347
347
return unsafe _override Lifetime ( span, borrowing: self )
348
348
}
349
349
_precondition ( _guts. isFastUTF8)
Original file line number Diff line number Diff line change @@ -630,7 +630,6 @@ extension Substring: LosslessStringConvertible {
630
630
631
631
extension Substring {
632
632
@frozen
633
- @_addressableForDependencies
634
633
public struct UTF8View : Sendable {
635
634
@usableFromInline
636
635
internal var _slice : Slice < String . UTF8View >
@@ -775,6 +774,7 @@ extension Substring.UTF8View {
775
774
let offset = first &+ ( 2 &* MemoryLayout< String . Index> . stride)
776
775
let start = unsafe UnsafePointer< UTF8 . CodeUnit > ( a) . advanced ( by: offset)
777
776
let span = unsafe Span( _unsafeStart: start, count: end &- first)
777
+ fatalError ( " Span over the small string form is not supported yet. " )
778
778
return unsafe _override Lifetime ( span, borrowing: self )
779
779
}
780
780
_internalInvariant ( _wholeGuts. isFastUTF8)
Original file line number Diff line number Diff line change 10
10
//
11
11
//===----------------------------------------------------------------------===//
12
12
13
- // RUN: %target-run-stdlib-swift(-enable-experimental-feature LifetimeDependence -enable-experimental-feature Span -enable-experimental-feature AddressableTypes)
13
+ // RUN: %target-run-stdlib-swift(-enable-experimental-feature LifetimeDependence -enable-experimental-feature AddressableTypes)
14
14
15
15
// REQUIRES: executable_test
16
16
// REQUIRES: swift_feature_LifetimeDependence
@@ -22,11 +22,13 @@ var suite = TestSuite("StringUTF8StorageProperty")
22
22
defer { runAllTests ( ) }
23
23
24
24
suite. test ( " Span from Small String " )
25
+ . skip ( . wasiAny( reason: " Trap tests aren't supported on WASI. " ) )
25
26
. require ( . stdlib_6_2) . code {
26
27
guard #available( SwiftStdlib 6 . 2 , * ) else { return }
27
28
28
29
let s = " A small string. " . utf8
29
30
let u = Array ( s)
31
+ expectCrashLater ( )
30
32
let span = s. span
31
33
32
34
let count = span. count
@@ -54,11 +56,13 @@ suite.test("Span from Large Native String")
54
56
}
55
57
56
58
suite. test ( " Span from Small String's Substring " )
59
+ . skip ( . wasiAny( reason: " Trap tests aren't supported on WASI. " ) )
57
60
. require ( . stdlib_6_2) . code {
58
61
guard #available( SwiftStdlib 6 . 2 , * ) else { return }
59
62
60
63
let s = " A small string. " . dropFirst ( 8 ) . utf8
61
64
let u = Array ( " string. " . utf8)
65
+ expectCrashLater ( )
62
66
let span = s. span
63
67
64
68
let count = span. count
You can’t perform that action at this time.
0 commit comments