summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/31626-issue_1916.cpp
blob: 56ce6f4ce0ea1e375b7f5dda4e0d9e7d0c68adb2 (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);