mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 15:13:07 +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(
|
|
}
|