summaryrefslogtreecommitdiff
path: root/tests/genie/operator-pre-decrement.gs
blob: bf46485e959333c5d1b0c3e053913fa5f8c47ada (plain)
1
2
3
4
5
init
	a:int = 1
	var b = --a
	assert( a == 0 )
	assert( b == 0 )