Skip to content

Commit db670f6

Browse files
committed
Add additional test for multiline with comments
1 parent 396b2a0 commit db670f6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Diff for: src/arduino.cc/builder/test/sketch_with_multiline_prototypes/sketch_with_multiline_prototypes.ino

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ void setup() {
66
test7();
77
test8();
88
test9(42, 42);
9+
test10(0,0,0);
910
}
1011

1112
void myctagstestfunc(int a,
@@ -44,4 +45,9 @@ test8() {}
4445
void
4546
/* comment */
4647
test9(int a,
47-
int b) {}
48+
int b) {}
49+
50+
void test10(int a, // this
51+
int b, // doesn't
52+
int c // work
53+
) {}

0 commit comments

Comments
 (0)