mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-18 04:19:44 +00:00
7 lines
80 B
Java
7 lines
80 B
Java
public class Java11Var {
|
|
public void test() {
|
|
var b = 10;
|
|
int c = 11;
|
|
}
|
|
}
|