mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
374 B
Swift
11 lines
374 B
Swift
// {"kind":"typecheck","signature":"swift::IsObjCRequest::evaluate(swift::Evaluator&, swift::ValueDecl*) const","signatureAssert":"Assertion failed: (errorConvention && \"Missing error convention\"), function markAsObjC"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
// REQUIRES: objc_interop
|
|
class a {
|
|
@objc var b : Int {
|
|
get throws {
|
|
}
|
|
set
|
|
}
|
|
}
|