summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/pawn/switch-vsemi.sma
blob: c2efacfba45db63456eec89148b08ba8ea65c6a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public plugin_init()
{
	new i=5
	
	switch(i){
		case 3: return false
		case 5:
		{
			i = 6
			return true
		}
		default: {
			return true
		}
	}
}