mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
241 B
Swift
8 lines
241 B
Swift
// {"signature":"swift::ExtensionDecl::getObjCCategoryName() const"}
|
|
// 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
|