summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/TestCBot/scenarios/opnew.txt
blob: 7d6838c2ed371d2ae7a8abed5d65c297838aba71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extern public void xx ()
{
	CPoint	pointeur, test = null  ;
	pointeur = new CPoint ( 3, 4 );

	if ( test == null ) show ( "NULL" );

	CPoint	pp = pointeur;

show( pointeur , pp );

	pp.x = 33.3;
	if ( pointeur.x != pp.x ) 0/0;

	pp = new CPoint();
//	pointeur = pp;

show( pointeur , pp );

}