add test to verify config key callSuper=call works with Value

This commit is contained in:
Roel Spilker
2016-06-08 22:44:19 +02:00
parent 6cec66eb2b
commit ea219cd7ce
3 changed files with 80 additions and 0 deletions
@@ -0,0 +1,7 @@
//CONF: lombok.equalsAndHashCode.callSuper = call
class ValueParent {
}
@lombok.Value
class ValueCallSuper extends ValueParent {
}