7 lines
69 B
Plaintext
7 lines
69 B
Plaintext
// Can't pre-increment
|
|
|
|
int func() {
|
|
const int x = 2;
|
|
++x;
|
|
}
|