| 3 | import com.github.bsideup.jabel.Desugar; |
| 4 | |
| 5 | @Desugar |
| 6 | public record RecordExample(int i, String s, long l, float f, double d, String[] arr, boolean b) { |
| 7 | |
| 8 | public static RecordExample DUMMY = new RecordExample(0, null, 0, 0, 0, null, true); |
| 9 | |
| 10 | public RecordExample { |
| 11 | if (i > 1_000_000) { |
| 12 | throw new IllegalArgumentException("'i' is too big"); |
| 13 | } |
| 14 | } |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected