mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
285 B
Swift
8 lines
285 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-ide-test -batch-code-completion -source-filename %s -filecheck %raw-FileCheck -completion-output-dir %t
|
|
|
|
func test(myParam: Int) {
|
|
consume #^CONSUME^#
|
|
// CONSUME: Decl[LocalVar]/Local: myParam[#Int#]; name=myParam
|
|
}
|