JavaCompilerCore/test/parser/WhileTest.jav

16 lines
196 B
Plaintext
Raw Normal View History

class WhileTest
{
2017-09-22 12:49:43 +00:00
void methode()
{
2017-10-01 07:58:56 +00:00
Boolean boolVar=true;
2017-09-22 12:49:43 +00:00
do
{
2017-10-01 07:58:56 +00:00
}while(boolVar);
2017-08-17 13:30:57 +00:00
2017-10-01 07:58:56 +00:00
while(boolVar)
2017-09-22 12:49:43 +00:00
{
test = test;
}
2017-08-17 13:08:30 +00:00
}
}