Files
swift-mirror/test/IDE/complete_attributes.swift
2019-06-18 16:09:49 -07:00

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() {}
}