CppLanguageServer: Add test for "get_parameters_hint"

This commit is contained in:
Itamar 2021-07-03 12:30:57 +03:00 committed by Andreas Kling
parent f26f764c7d
commit 2af5bb9083
Notes: sideshowbarker 2024-07-18 10:29:58 +09:00
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,8 @@
void foo(int x, char y);
void bar()
{
foo();
foo(123, 'b');
foo(
}