1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 19:44:58 +00:00
serenity/Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests/parameters_hint1.cpp

8 lines
80 B
C++

void foo(int x, char y);
void bar()
{
foo();
foo(123, 'b');
foo(
}