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