mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-05 15:50:58 +00:00
9 lines
80 B
C++
9 lines
80 B
C++
|
|
void foo(int x, char y);
|
||
|
|
|
||
|
|
void bar()
|
||
|
|
{
|
||
|
|
foo();
|
||
|
|
foo(123, 'b');
|
||
|
|
foo(
|
||
|
|
}
|