10 lines
91 B
Plaintext
10 lines
91 B
Plaintext
// Can't assign to type
|
|
|
|
struct Foo {
|
|
int x;
|
|
};
|
|
|
|
int func(const int f) {
|
|
f -= 2;
|
|
}
|