Files
swift-mirror/test/stmt/errors.swift
Doug Gregor 6efaf7ac0f Introduce -warn-concurrency flag to warn about concurrency issues.
To help support incremental adoption of the concurrency model, a number
of concurrency-related diagnostics are enabled only in "new" code that
takes advantage of concurrency features---async, @concurrent functions,
actors, etc. This warning flag opts into additional warnings that better
approximate the eventual concurrency model, and which will become
errors a future Swift version, allowing one to both experiment with
the full concurrency model and also properly prepare for it.
2021-03-05 10:58:54 -08:00

274 lines
5.9 KiB
Swift

// RUN: %target-typecheck-verify-swift
enum MSV : Error {
case Foo, Bar, Baz
var _domain: String { return "" }
var _code: Int { return 0 }
}
func a() {}
func b() {}
func c() {}
func d() {}
func e() {}
func thrower() throws {}
func opaque_error() -> Error { return MSV.Foo }
func one() {
throw MSV.Foo // expected-error {{error is not handled because the enclosing function is not declared 'throws'}}
}
func two() {
throw opaque_error() // expected-error {{error is not handled because the enclosing function is not declared 'throws'}}
}
func three() {
do {
throw opaque_error() // expected-error {{error is not handled because the enclosing catch is not exhaustive}}
} catch let e as MSV {
_ = e
}
}
func four() {
do {
throw opaque_error()
} catch let e {
_ = e
}
}
func five() {
do {
throw opaque_error()
} catch let e as MSV {
_ = e
} catch _ {
}
}
func six() {
do {
do {
throw opaque_error()
} catch let e as MSV {
_ = e
}
} catch _ {
}
}
func seven_helper() throws -> Int { throw MSV.Baz }
struct seven {
var x: Int {
do {
return try seven_helper()
} catch {
return 0
}
}
var y: Int {
return try! seven_helper()
}
var z: Int {
return (try? seven_helper()) ?? 0
}
}
class eight {
lazy var x: Int = {
do {
return try seven_helper()
} catch {
return 0
}
}()
lazy var y: Int = {
return try! seven_helper()
}()
lazy var z: Int = {
return (try? seven_helper()) ?? 0
}()
}
func multiPattern() {
do {
throw opaque_error()
} catch MSV.Foo, _ {
_ = e
}
}
protocol ThrowingProto {
func foo() throws
static func bar() throws
}
func testExistential(_ p : ThrowingProto) throws {
try p.foo()
try type(of: p).bar()
}
func testGeneric<P : ThrowingProto>(p : P) throws {
try p.foo()
try P.bar()
}
// Don't warn about the "useless" try in these cases.
func nine_helper(_ x: Int, y: Int) throws {} // expected-note {{'nine_helper(_:y:)' declared here}}
func nine() throws {
try nine_helper(y: 0) // expected-error {{missing argument for parameter #1 in call}}
}
func ten_helper(_ x: Int) {}
func ten_helper(_ x: Int, y: Int) throws {} // expected-note {{'ten_helper(_:y:)' declared here}}
func ten() throws {
try ten_helper(y: 0) // expected-error {{missing argument for parameter #1 in call}} {{18-18=<#Int#>, }}
}
// rdar://21074857
func eleven_helper(_ fn: () -> ()) {}
func eleven_one() {
eleven_helper {
do {
try thrower()
// FIXME: suppress the double-emission of the 'always true' warning
} catch let e as Error { // expected-warning {{immutable value 'e' was never used}} {{17-18=_}} expected-warning 2 {{'as' test is always true}}
}
}
}
func eleven_two() {
eleven_helper { // expected-error {{invalid conversion from throwing function of type '() throws -> ()' to non-throwing function type '() -> ()'}}
do {
try thrower()
} catch let e as MSV {
}
}
}
enum Twelve { case Payload(Int) }
func twelve_helper(_ fn: (Int, Int) -> ()) {}
func twelve() {
twelve_helper { (a, b) in // expected-error {{invalid conversion from throwing function of type '(Int, Int) throws -> ()' to non-throwing function type '(Int, Int) -> ()'}}
do {
try thrower()
} catch Twelve.Payload(a...b) {
}
}
}
struct Thirteen : Error, Equatable {}
func ==(a: Thirteen, b: Thirteen) -> Bool { return true }
func thirteen_helper(_ fn: (Thirteen) -> ()) {}
func thirteen() {
thirteen_helper { (a) in // expected-error {{invalid conversion from throwing function of type '(Thirteen) throws -> ()' to non-throwing function type '(Thirteen) -> ()'}}
do {
try thrower()
} catch a {
}
}
}
// SR 6400
enum SR_6400_E: Error {
case castError
}
struct SR_6400_S_1 {}
struct SR_6400_S_2: Error {}
protocol SR_6400_FakeApplicationDelegate: AnyObject {}
class SR_6400_FakeViewController {}
func sr_6400() throws {
do {
throw SR_6400_E.castError
} catch is SR_6400_S_1 { // expected-warning {{cast from 'Error' to unrelated type 'SR_6400_S_1' always fails}}
print("Caught error")
}
do {
throw SR_6400_E.castError
} catch is SR_6400_S_2 {
print("Caught error") // Ok
}
}
func sr_6400_1<T>(error: Error, as type: T.Type) -> Bool {
return (error as? T) != nil // Ok
}
func sr_6400_2(error: Error) {
_ = error as? (SR_6400_FakeViewController & Error) // Ok
}
func sr_6400_3(error: Error) {
_ = error as? (Error & SR_6400_FakeApplicationDelegate) // Ok
}
class SR_6400_A {}
class SR_6400_B: SR_6400_FakeApplicationDelegate & Error {}
func sr_6400_4() {
do {
throw SR_6400_E.castError
} catch let error as SR_6400_A { // Okay
print(error)
} catch {
print("Bar")
}
do {
throw SR_6400_E.castError
} catch let error as SR_6400_B { // Okay
print(error)
} catch {
print("Bar")
}
}
// SR-11402
protocol SR_11402_P {}
class SR_11402_Superclass {}
class SR_11402_Subclass: SR_11402_Superclass, SR_11402_P {}
func sr_11402_func1(_ x: SR_11402_P) {
if let y = x as? SR_11402_Superclass { // Okay
print(y)
}
}
final class SR_11402_Final {}
func sr_11402_func2(_ x: SR_11402_P) {
if let y = x as? SR_11402_Final { // expected-warning {{cast from 'SR_11402_P' to unrelated type 'SR_11402_Final' always fails}}
print(y)
}
}
// https://bugs.swift.org/browse/SR-13654
func sr_13654_func() throws -> String {}
func sr_13654_invalid_interpolation() {
_ = try "\(sr_13654_func())" // expected-error {{errors thrown from here are not handled}}
_ = "\(try sr_13654_func())" // expected-error {{errors thrown from here are not handled}}
}
func sr_13654_valid_interpolation() throws {
_ = try "\(sr_13654_func())"
_ = "\(try sr_13654_func())"
}
// rdar://problem/72748150
func takesClosure(_: (() -> ())) throws -> Int {}
func passesClosure() {
_ = try takesClosure { } // expected-error {{errors thrown from here are not handled}}
}