summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/vala/70302-cast.vala
blob: 6c5d11db2b03c1f721326bf24f0e953ce6cfa073 (plain)
1
2
3
4
5
6
7
foo = (Type) bar;

foo = (Ns.Type) bar;

foo = (Type<int>) bar;

foo = (Type<int, int>) bar;