summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31634-sp_after_decltype.cpp
blob: c48543be358441fb800c948ead9999dd1ac92467 (plain)
1
2
3
4
5
6
7
8
int x;
char y;
auto x1 = decltype(x){0};
auto y1 = decltype(y){'a'};

unsigned rows;
for (auto row = decltype(rows){0}; row < rows; ++row) {
}