7 lines
71 B
Text
7 lines
71 B
Text
int foo(int a) {
|
|
return a;
|
|
}
|
|
|
|
void main() {
|
|
void b = foo(1);
|
|
}
|