i'm working on a legacy project & i found something like that :
test:{
if(1 == 1) {
System.out.println("Oups");
break test;
}
System.out.println("Hello World");
}
I google it, but nothing seems to match with this kind of structure.
Of course, this part of code compile & run ... ????
Do someone know what that do ?