16 lines
150 B
Text
16 lines
150 B
Text
|
|
int f((int) -> int g) {
|
||
|
|
return s(3);
|
||
|
|
}
|
||
|
|
|
||
|
|
int s(int x) {
|
||
|
|
return x;
|
||
|
|
}
|
||
|
|
|
||
|
|
int l(((int) -> int) -> int x) {
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
return l(f);
|
||
|
|
}
|