7 lines
72 B
Plaintext
7 lines
72 B
Plaintext
// Can't assign to type
|
|
|
|
int func() {
|
|
const int x = 2;
|
|
x = 0;
|
|
}
|