mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
11 lines
196 B
Java
11 lines
196 B
Java
@lombok.Data
|
|
public class SimpleTest {
|
|
private final String test;
|
|
private final int foo;
|
|
|
|
public String bar() {
|
|
int val = getFoo() + 5;
|
|
return new SimpleTest("", 0).toString() + val;
|
|
}
|
|
}
|