Currently, ErrorProne emits a warning:
{noformat}
PropertyGetBenchmarkKotlin_jmhType_B3.java:3: warning: [HidingField] Hiding fields of superclasses may cause confusion and errors. This field is hiding a field of the same name in superclass: PropertyGetBenchmarkKotlin_jmhType_B1
byte p000, p001, p002, p003, p004, p005, p006, p007, p008, p009, p010, p011, p012, p013, p014, p015;
^
(see https://errorprone.info/bugpattern/HidingField)
{noformat}
Even though the fields are not used, it makes sense resolving the warning.
{noformat}
PropertyGetBenchmarkKotlin_jmhType_B3.java:3: warning: [HidingField] Hiding fields of superclasses may cause confusion and errors. This field is hiding a field of the same name in superclass: PropertyGetBenchmarkKotlin_jmhType_B1
byte p000, p001, p002, p003, p004, p005, p006, p007, p008, p009, p010, p011, p012, p013, p014, p015;
^
(see https://errorprone.info/bugpattern/HidingField)
{noformat}
Even though the fields are not used, it makes sense resolving the warning.