/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/tools/pg_bsd_indent/tests/elsecomment.0.stdout
47 строк
577 B
David Rowley
Fix some typos and some incorrectly duplicated words
18 апр 2023, 05:03
18 апр 2023, 05:03
eef231e
Код
Авторство
О чём код?
/* $FreeBSD$ */ /* See r303484 and r309342 */ void t(void) { /* The two if statements below exercise two different code paths. */ if (1) /* a */ int a; else /* b */ int b; if (1) /* a */ int a; else /* b */ int b; if (1) { } /* Old indent would remove the 3 blank lines above, awaiting "else". */ if (1) { int a; } else if (0) { int b; } /* test */ else ; if (1) ; else /* Old indent would get very confused here */ /* We also mustn't assume that there's only one comment */ /* before the left brace. */ { } }