mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 19:44:58 +00:00
8 lines
80 B
C++
8 lines
80 B
C++
void foo(int x, char y);
|
|
|
|
void bar()
|
|
{
|
|
foo();
|
|
foo(123, 'b');
|
|
foo(
|
|
}
|