blob: a3dde699869af5c59e79f1dfd1df68bff2ee90e2 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift
// SR-7884
func f<T>(_ x: T) -> T {
return x
}
func f<T>(_ x: T?) -> T? {
return x
}
let r = f(1)
let _ = r! // expected-error {{cannot force unwrap value of non-optional type 'Int'}}
// SR-7899
func testLazySequence(_ lazySequence: LazySequence<[Int]>?) {
let value = lazySequence?.compactMap({ $0 as? Int }).first // expected-warning {{conditional cast from 'Int' to 'Int' always succeeds}}
let _: Int = value!
}