| 220 | } |
| 221 | // Do NOT change the order of naming w/o changing testlib.c as well |
| 222 | public static class TestStructure0 extends FilledStructure { |
| 223 | public static final List<String> FIELDS = createFieldsOrder("field0", "field1"); |
| 224 | public byte field0 = 0x01; |
| 225 | public short field1 = 0x0202; |
| 226 | @Override |
| 227 | protected List<String> getFieldOrder() { |
| 228 | return FIELDS; |
| 229 | } |
| 230 | } |
| 231 | @FieldOrder({ "field0", "field1" }) |
| 232 | public static class AnnotatedTestStructure0 extends FilledStructure { |
| 233 | public byte field0 = 0x01; |
nothing calls this directly
no test coverage detected
searching dependent graphs…