mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
234 B
Swift
11 lines
234 B
Swift
// RUN: %target-swift-frontend -emit-silgen %s -disable-objc-attr-requires-foundation-module -enable-sil-ownership
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
@objc protocol Unrelated {}
|
|
|
|
@objc class C {}
|
|
|
|
let c = C()
|
|
let unrelated = c as! Unrelated
|