mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
12 lines
171 B
Java
12 lines
171 B
Java
// version :9
|
|
import lombok.val;
|
|
|
|
public class ValWithLabel {
|
|
{
|
|
LABEL: for (val x : new String[0]) {
|
|
if (x.toLowerCase() == null) {
|
|
continue LABEL;
|
|
}
|
|
}
|
|
}
|
|
} |