|
75 | 75 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=IN_TUPLE_1 | %FileCheck %s -check-prefix=IN_TUPLE_1 |
76 | 76 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=IN_TUPLE_2 | %FileCheck %s -check-prefix=IN_TUPLE_2 |
77 | 77 |
|
78 | | -// RUN-FIXME(rdar56755598): %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_1 | %FileCheck %s -check-prefix=OWN_INIT_1 |
79 | | -// RUN-FIXME(rdar56755598): %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_2 | %FileCheck %s -check-prefix=OWN_INIT_2 |
| 78 | +// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_1 | %FileCheck %s -check-prefix=OWN_INIT_1 |
| 79 | +// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_2 | %FileCheck %s -check-prefix=OWN_INIT_2 |
80 | 80 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_3 | %FileCheck %s -check-prefix=OWN_INIT_3 |
81 | 81 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_4 | %FileCheck %s -check-prefix=OWN_INIT_4 |
82 | 82 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_5 | %FileCheck %s -check-prefix=OWN_INIT_5 |
|
85 | 85 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_8 | %FileCheck %s -check-prefix=OWN_INIT_8 |
86 | 86 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_9 | %FileCheck %s -check-prefix=OWN_INIT_9 |
87 | 87 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_10 | %FileCheck %s -check-prefix=OWN_INIT_10 |
| 88 | +// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_11 | %FileCheck %s -check-prefix=OWN_INIT_11 |
| 89 | +// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_INIT_12 | %FileCheck %s -check-prefix=OWN_INIT_12 |
88 | 90 |
|
89 | 91 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_ACCESSOR_1 | %FileCheck %s -check-prefix=OWN_ACCESSOR_1 |
90 | 92 | // RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=OWN_ACCESSOR_2 | %FileCheck %s -check-prefix=OWN_ACCESSOR_2 |
@@ -612,6 +614,14 @@ func ownInitTesting() { |
612 | 614 | // OWN_INIT_10: Begin completions |
613 | 615 | // OWN_INIT_10-NOT: ownInit10 |
614 | 616 | } |
| 617 | +func ownInitTestingParam(ownInit11: Int = #^OWN_INIT_11^#) { |
| 618 | + // OWN_INIT_11: Begin completions |
| 619 | + // OWN_INIT_11-NOT: Decl[LocalVar]{{.*}}ownInit11 |
| 620 | +} |
| 621 | +func ownInitTestingParamInterp(ownInit12: String = "\(#^OWN_INIT_12^#)") { |
| 622 | + // OWN_INIT_12: Begin completions |
| 623 | + // OWN_INIT_12-NOT: Decl[LocalVar]{{.*}}ownInit12 |
| 624 | +} |
615 | 625 | func ownInitTestingShadow(ownInit7: Int) { |
616 | 626 | var ownInit7: Int = #^OWN_INIT_7^# |
617 | 627 | // OWN_INIT_7: Begin completions |
|
0 commit comments