mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-16 06:19:49 +00:00
8 lines
94 B
Java
8 lines
94 B
Java
//version 11:
|
|
public class Java11Var {
|
|
public void test() {
|
|
var b = 10;
|
|
int c = 11;
|
|
}
|
|
}
|