summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/31633-sp_after_decltype.cpp
blob: 6a62e6f2e918384793011224e5812b980f5c2b71 (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) {
}