mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
These are tests that fail in the next commit without this flag. This does not add -verify-ignore-unrelated to all tests with -verify, only the ones that would fail without it. This is NFC since this flag is currently a no-op.
25 lines
1.5 KiB
Swift
25 lines
1.5 KiB
Swift
// RUN: %target-swift-frontend -target %target-swift-5.1-abi-triple %s -emit-sil -o /dev/null -verify -verify-ignore-unrelated
|
|
// RUN: %target-swift-frontend -target %target-swift-5.1-abi-triple %s -emit-sil -o /dev/null -verify -verify-ignore-unrelated -strict-concurrency=targeted
|
|
// RUN: %target-swift-frontend -target %target-swift-5.1-abi-triple %s -emit-sil -o /dev/null -verify -verify-ignore-unrelated -strict-concurrency=complete
|
|
|
|
// REQUIRES: concurrency
|
|
|
|
actor A1: Comparable {}
|
|
// expected-error@-1 {{type 'A1' does not conform to protocol 'Comparable'}}
|
|
// expected-error@-2 {{type 'A1' does not conform to protocol 'Equatable'}}
|
|
// expected-note@-3 {{automatic synthesis of 'Comparable' is not supported for actor declarations}}
|
|
// expected-note@-4 {{automatic synthesis of 'Equatable' is not supported for actor declarations}}
|
|
// expected-note@-5 {{add stubs for conformance}}
|
|
|
|
actor A2: Equatable {}
|
|
// expected-error@-1 {{type 'A2' does not conform to protocol 'Equatable'}}
|
|
// expected-note@-2 {{automatic synthesis of 'Equatable' is not supported for actor declarations}}
|
|
// expected-note@-3 {{add stubs for conformance}}
|
|
|
|
actor A3: Hashable {}
|
|
// expected-error@-1 {{type 'A3' does not conform to protocol 'Hashable'}}
|
|
// expected-error@-2 {{type 'A3' does not conform to protocol 'Equatable'}}
|
|
// expected-note@-3 {{automatic synthesis of 'Hashable' is not supported for actor declarations}}
|
|
// expected-note@-4 {{automatic synthesis of 'Equatable' is not supported for actor declarations}}
|
|
// expected-note@-5 {{add stubs for conformance}}
|