JavaPatternMatching/bin/mycompiler/test/lambda/TestIfStmt.jav

13 lines
96 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class TestIfStmt {
methode(){
var;
if(true){
var=this;
}else{
var=this;
}
return 1;
}
}