зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
137 B
C++
12 строки
137 B
C++
|
struct C {
|
||
|
static int x;
|
||
|
};
|
||
|
|
||
|
int C::x = 0;
|
||
|
|
||
|
// Expressions with side effects
|
||
|
C &f(int, int, int, int);
|
||
|
void g() {
|
||
|
f(1, 2, 3, 4).x;
|
||
|
}
|