diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-02-15 17:11:52 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-02-15 17:11:52 -0800 |
| commit | 4a6e6b0d5b91b0db45c6fefc8a0f17af2c4b3b83 (patch) | |
| tree | 0b421dcb8357ffdf56973a05c0af92e6eeaae52e /t/t4018/java-record | |
| parent | f7c208cdf5b10df89a28320628e19e4c4a121629 (diff) | |
| parent | 93d52ed050f5613897b73e75961df5c589d63a4b (diff) | |
| download | git-4a6e6b0d5b91b0db45c6fefc8a0f17af2c4b3b83.tar.xz | |
Merge branch 'ar/userdiff-java-update'
Userdiff regexp update for Java language.
* ar/userdiff-java-update:
userdiff: support Java sealed classes
userdiff: support Java record types
userdiff: support Java type parameters
Diffstat (limited to 't/t4018/java-record')
| -rw-r--r-- | t/t4018/java-record | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t4018/java-record b/t/t4018/java-record new file mode 100644 index 0000000000..97aa819dd8 --- /dev/null +++ b/t/t4018/java-record @@ -0,0 +1,6 @@ +public record RIGHT(int comp1, double comp2, String comp3) { + static int ONE; + static int TWO; + static int THREE; + static int ChangeMe; +} |
