colobot/test/cbot/scenarios/include.txt

28 lines
347 B
Plaintext
Raw Normal View History

class Z
{
static int x = 0;
private int y;
void T( )
{
// autoris<69> ici
y = x ;
this.y = this.x ;
x = y ;
this.x = this.y ;
}
}
extern public void test()
{
Z a();
3 * a.x; // autoris<69>
//vu 3 * a.y; // interdit
//vu a.y = 3; // interdit ici
a.x = 1; // autoris<69>
show ( a );
a.T();
show ( a );
}