aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/resources/com/google/googlejavaformat/java/testdata/SwitchUnderscore.output
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/test/resources/com/google/googlejavaformat/java/testdata/SwitchUnderscore.output')
-rw-r--r--core/src/test/resources/com/google/googlejavaformat/java/testdata/SwitchUnderscore.output8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/src/test/resources/com/google/googlejavaformat/java/testdata/SwitchUnderscore.output b/core/src/test/resources/com/google/googlejavaformat/java/testdata/SwitchUnderscore.output
new file mode 100644
index 0000000..8d611d2
--- /dev/null
+++ b/core/src/test/resources/com/google/googlejavaformat/java/testdata/SwitchUnderscore.output
@@ -0,0 +1,8 @@
+public class SwitchUnderscore {
+ void x(Object o) {
+ switch (o) {
+ case String _:
+ default:
+ }
+ }
+}