summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/sp_after_decltype.cpp
blob: 18448555766c505636981c5ae18a3ba73d8b8847 (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) {
}