diff --git a/tests/indent/go/issue-3288.go b/tests/indent/go/issue-3288.go new file mode 100644 index 000000000..a59208184 --- /dev/null +++ b/tests/indent/go/issue-3288.go @@ -0,0 +1,14 @@ +package main + +func correct(word string) { + switch word { + + } // <--- + select { + + } // <--- + + arr := []struct { + + } // <--- +}