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