summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/cpp/issue_1916.cpp
blob: 4c81960519dfc95cc96c256d445184f3a4d3b184 (plain)
1
2
3
4
5
6
7
8
int x;

decltype  (x)  y;
decltype  (x)  z = 5;

decltype  (char{5})  a = 'a';

using x_t = decltype  (x)  ;