summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31629-issue_1916.cpp
blob: 913f1e28e3f19b672d0f858f2945171e81253d9c (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);