mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
577 B
Swift
12 lines
577 B
Swift
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=TOP_LEVEL_ATTR_1 -code-completion-keywords=false | %FileCheck %s -check-prefix=ERROR_COMMON
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=MEMBER_DECL_ATTR_1 -code-completion-keywords=false | %FileCheck %s -check-prefix=ERROR_COMMON
|
|
|
|
// ERROR_COMMON: found code completion token
|
|
// ERROR_COMMON-NOT: Keyword/
|
|
|
|
@#^TOP_LEVEL_ATTR_1^# class TopLevelDeclAttr1 {}
|
|
|
|
class MemberDeclAttribute {
|
|
@#^MEMBER_DECL_ATTR_1^# func memberDeclAttr1() {}
|
|
}
|