diff options
Diffstat (limited to 'src/cmd/gofmt/testdata/tabs.input')
-rw-r--r-- | src/cmd/gofmt/testdata/tabs.input | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/cmd/gofmt/testdata/tabs.input b/src/cmd/gofmt/testdata/tabs.input new file mode 100644 index 0000000..635be79 --- /dev/null +++ b/src/cmd/gofmt/testdata/tabs.input @@ -0,0 +1,33 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//gofmt + +package main + +var _ = []struct{ + S string + Integer int +}{ + { + S: "Hello World", + Integer: 42, + }, + { + S: "\t", + Integer: 42, + }, + { + S: " ", // an actual <tab> + Integer: 42, + }, + { + S: ` `, // an actual <tab> + Integer: 42, + }, + { + S: "\u0009", + Integer: 42, + }, +} |