1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
// RUN: %empty-directory(%t)
// RUN: %target-swift-frontend -emit-module -emit-module-path %t/StrictModule.swiftmodule -module-name StrictModule -swift-version 6 %S/Inputs/StrictModule.swift
// RUN: %target-swift-frontend -emit-module -emit-module-path %t/NonStrictModule.swiftmodule -module-name NonStrictModule %S/Inputs/NonStrictModule.swift
// RUN: %target-swift-frontend -strict-concurrency=targeted -disable-availability-checking -I %t %s -o /dev/null -verify -emit-sil
// RUN: %target-swift-frontend -disable-availability-checking -I %t %s -o /dev/null -verify -emit-sil -strict-concurrency=complete -verify-additional-prefix tns-
// REQUIRES: concurrency
import StrictModule // no remark: we never recommend @preconcurrency due to an explicitly non-Sendable (via -strict-concurrency=complete) type
@preconcurrency import NonStrictModule
actor A {
func f() -> [StrictStruct: NonStrictClass] { [:] }
}
class NS { } // expected-note {{class 'NS' does not conform to the 'Sendable' protocol}}
struct MyType {
var nsc: NonStrictClass
}
struct MyType2: Sendable {
var nsc: NonStrictClass // no warning; @preconcurrency suppressed it
var ns: NS // expected-warning{{stored property 'ns' of 'Sendable'-conforming struct 'MyType2' has non-sendable type 'NS'}}
}
struct MyType3 {
var nsc: NonStrictClass
}
func testA(ns: NS, mt: MyType, mt2: MyType2, mt3: MyType3, sc: StrictClass, nsc: NonStrictClass) async {
// This is task isolated since we are capturing function arguments... but
// since we are merging NonStrictClass from a preconcurrency module, the whole
// error is squelched since we allow for preconcurrency to apply to the entire
// capture list.
Task {
print(ns)
print(mt)
print(mt2)
print(mt3)
print(sc)
print(nsc)
}
}
extension NonStrictStruct: @retroactive @unchecked Swift.Sendable { }
class StrictSubclass: StrictClass {
override func send(_ body: () -> ()) {}
override func dontSend(_ body: @Sendable () -> ()) {} // expected-warning {{declaration 'dontSend' has a type with different sendability from any potential overrides}}
}
struct StrictConformer: StrictProtocol {
func send(_ body: () -> Void) {}
func dontSend(_ body: @Sendable () -> Void) {} // expected-warning {{sendability of function types in instance method 'dontSend' does not match requirement in protocol 'StrictProtocol'}}
}
class NonStrictSubclass: NonStrictClass {
override func send(_ body: () -> ()) {}
override func dontSend(_ body: @Sendable () -> ()) {} // no-warning
}
struct NonStrictConformer: NonStrictProtocol {
func send(_ body: () -> Void) {}
func dontSend(_ body: @Sendable () -> Void) {} // no-warning
}
|