Files
swift-mirror/test/SILGen/protocol_cast_toplevel.swift
2017-08-29 19:17:25 -07:00

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