mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
9 lines
270 B
Swift
9 lines
270 B
Swift
// RUN: %target-typecheck-verify-swift -enable-objc-interop
|
|
// REQUIRES: OS=macosx
|
|
|
|
import Foundation
|
|
|
|
// Can downcast by bridging
|
|
let bridge = "A" as? NSString // expected-warning {{always succeeds}}
|
|
let bridge1 = 1 as? NSNumber // expected-warning {{always succeeds}}
|