summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/TestCBot/scenarios/Deleted.txt
blob: 469a624c5b1820fe2a18d2afc555893889f22e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public extern void object :: ESSAI()
{
	while(true)
  {
	if ( true )
	{
		goto(12);
		break;
	}
  }
	object	x = null ;

	while ( x == null ) x = radar();

	show ( x.position ) ;

	TEST(5, x);

	if ( x == null ) show ( "DELETED" );

	show ( x.position ) ;

}