File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
ycmd/tests/clangd/testdata/general_fallback Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
using namespace Test ;
4
4
5
+ int a_really_really_really_really_annoyingly_long_method_name (
6
+ int with,
7
+ char a,
8
+ bool lot,
9
+ const char * of,
10
+ float arguments
11
+ );
12
+ int a_really_really_really_really_annoyingly_long_method_name (
13
+ int with_only_one_really_really_really_annoyingly_long_argument
14
+ );
15
+
5
16
int main ( int , char ** )
6
17
{
7
18
make_drink ( TypeOfDrink::COFFEE, 10.0 , Flavour::ELDERFLOWER );
Original file line number Diff line number Diff line change @@ -29,5 +29,7 @@ namespace Test
29
29
Drink& make_drink ( TypeOfDrink type, Temperature temp, int sugargs );
30
30
Drink& make_drink ( TypeOfDrink type, double fizziness, Flavour Flavour );
31
31
32
- void simple_func ( int f );
32
+ void simple_func ( int d, float c, char *S );
33
+ void simple_func ( int f, char c );
34
+ void simple_func ( float f, char c );
33
35
}
You can’t perform that action at this time.
0 commit comments