mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
246 B
Swift
11 lines
246 B
Swift
// {"signature":"swift::IsObjCRequest::evaluate(swift::Evaluator&, swift::ValueDecl*) const"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
// REQUIRES: objc_interop
|
|
class a {
|
|
@objc var b : Int {
|
|
get throws {
|
|
}
|
|
set
|
|
}
|
|
}
|