blob: db08b0aa211f650a7a25f41e9ff65b0c7703773b [file] [log] [blame]
// RUN: %target-swift-emit-silgen %s | %FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-%target-runtime
public protocol P {}
extension Int: P {}
public class A {}
public class B: A {
// CHECK-LABEL: sil [ossa] @$s16optional_to_bool1BC1x{{[_0-9a-zA-Z]*}}vg
// CHECK: select_enum {{%.*}} : $Optional<Int>
public lazy var x: Int = 0
// CHECK-LABEL: sil [ossa] @$s16optional_to_bool1BC1y{{[_0-9a-zA-Z]*}}vg
// CHECK: select_enum_addr {{%.*}} : $*Optional<P>
public lazy var y: P = 0
}
// Collection casting is not implemented in non-ObjC runtime
#if _runtime(_ObjC)
// CHECK-objc-LABEL: sil [ossa] @$s16optional_to_bool3foo{{[_0-9a-zA-Z]*}}F
public func foo(x: inout [A]) -> Bool {
// CHECK-objc: select_enum {{%.*}} : $Optional<Array<B>>
return x is [B]
}
#endif