summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/cast.cpp
blob: 7b29b06f200022636335e0a2f0cad9588c1afc16 (plain)
1
2
3
4
5
6
{
    a = ( int)5.6;
    b = int (5.6 );
    c = (type<int>)t;
    d = (type<int, int>)t;
}