@@ -164,7 +164,7 @@ func testExprPostfixBeginIgnored3(fooParam: FooStruct) {
164
164
165
165
//===--- Test that we include function parameters in completion results.
166
166
167
- func testFindFuncParam1( fooParam: FooStruct , a: Int , b: Float , c: inout Double ) ( d: inout Double ) {
167
+ func testFindFuncParam1( fooParam: FooStruct , a: Int , b: Float , c: inout Double , d: inout Double ) {
168
168
#^FIND_FUNC_PARAM_1 ^#
169
169
// FIND_FUNC_PARAM_1: Begin completions
170
170
// FIND_FUNC_PARAM_1-DAG: Decl[LocalVar]/Local: a[#Int#]{{; name=.+$}}
@@ -183,7 +183,7 @@ func testFindFuncParam2<Foo : FooProtocol>(fooParam: FooStruct, foo: Foo) {
183
183
}
184
184
185
185
struct TestFindFuncParam3_4 {
186
- func testFindFuncParam3( a: Int , b: Float ) ( c: Double ) {
186
+ func testFindFuncParam3( a: Int , b: Float , c: Double ) {
187
187
#^FIND_FUNC_PARAM_3 ^#
188
188
// FIND_FUNC_PARAM_3: Begin completions
189
189
// FIND_FUNC_PARAM_3-DAG: Decl[LocalVar]/Local: self[#TestFindFuncParam3_4#]{{; name=.+$}}
@@ -229,7 +229,7 @@ struct TestFindFuncParam5_6<T> {
229
229
}
230
230
231
231
class TestFindFuncParam7 {
232
- func testFindFuncParam7( a: Int , b: Float ) ( c: Double ) {
232
+ func testFindFuncParam7( a: Int , b: Float , c: Double ) {
233
233
#^FIND_FUNC_PARAM_7 ^#
234
234
// FIND_FUNC_PARAM_7: Begin completions
235
235
// FIND_FUNC_PARAM_7-DAG: Decl[LocalVar]/Local: self[#TestFindFuncParam7#]{{; name=.+$}}
0 commit comments