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