mirror of
https://github.com/golang/go
synced 2024-11-24 23:07:56 -07:00
tabwriter: delete unnecessary type declaration
R=rsc, r2 CC=golang-dev https://golang.org/cl/2733041
This commit is contained in:
parent
c77f090085
commit
19b8fc788c
@ -99,16 +99,13 @@ func check(t *testing.T, testname string, minwidth, tabwidth, padding int, padch
|
||||
}
|
||||
|
||||
|
||||
type entry struct {
|
||||
var tests = []struct {
|
||||
testname string
|
||||
minwidth, tabwidth, padding int
|
||||
padchar byte
|
||||
flags uint
|
||||
src, expected string
|
||||
}
|
||||
|
||||
|
||||
var tests = []entry{
|
||||
}{
|
||||
{
|
||||
"1a",
|
||||
8, 0, 1, '.', 0,
|
||||
|
Loading…
Reference in New Issue
Block a user