forked from google/google-java-format
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes google#1037 PiperOrigin-RevId: 606394473
- Loading branch information
Showing
5 changed files
with
42 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
core/src/test/resources/com/google/googlejavaformat/java/testdata/I1037.input
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
public sealed interface A { | ||
record AA(Long a) implements A {} | ||
|
||
static Long mySwitch(A a) { | ||
switch (a) { | ||
case AA(_) -> { | ||
return 1L; | ||
} | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
core/src/test/resources/com/google/googlejavaformat/java/testdata/I1037.output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
public sealed interface A { | ||
record AA(Long a) implements A {} | ||
|
||
static Long mySwitch(A a) { | ||
switch (a) { | ||
case AA(_) -> { | ||
return 1L; | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.