gecko-dev/tools/clang-tidy/test/readability-static-accessed...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;
}