mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 12:22:31 +00:00
9 lines
192 B
Java
9 lines
192 B
Java
//CONF: lombok.toString.callSuper = CALL
|
|
@lombok.ToString
|
|
class ToStringAutoSuperWithNoParent {
|
|
}
|
|
|
|
@lombok.ToString
|
|
class ToStringAutoSuperWithParent extends ToStringAutoSuperWithNoParent {
|
|
}
|