summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/TestCBot/scenarios/postinc.txt
blob: cdf6ab5bdf71474ebb634ad4bd01d0ce49f7c98d (plain)
1
2
3
4
5
6
7
extern public void X()
{
	point	A [ ] ;
	A[5] = new point (2,3);
	int val = A[5].x++ + --A[5].y;
	show ( A, val );
}