mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
372 B
Swift
8 lines
372 B
Swift
// {"kind":"typecheck","signature":"swift::ValueDecl::isObjC() const","signatureAssert":"Assertion failed: (!LazySemanticInfo.isObjCComputed || LazySemanticInfo.isObjC == value), function setIsObjC"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
// REQUIRES: objc_interop
|
|
protocol a
|
|
@objc protocol b : c
|
|
@objc protocol d : b
|
|
@objc protocol c : d, a
|