mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
More test files, test files updated to be valid java, and ecj test now goes through the complete compile process. This means val and @Delegate testing is now enabled.
TODO: Update -eclipse tests.
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
import lombok.ToString;
|
||||
@ToString class ToStringOuter {
|
||||
final int x;
|
||||
int x;
|
||||
String name;
|
||||
@ToString class ToStringInner {
|
||||
final int y;
|
||||
int y;
|
||||
}
|
||||
@ToString static class ToStringStaticInner {
|
||||
final int y;
|
||||
int y;
|
||||
}
|
||||
class ToStringMiddle {
|
||||
@ToString class ToStringMoreInner {
|
||||
final String name;
|
||||
String name;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user