9 lines
63 B
Text
9 lines
63 B
Text
int f() {
|
|
return 3;
|
|
}
|
|
|
|
int bad() {
|
|
f() = 4;
|
|
return 0;
|
|
}
|
|
|