Commit 19b8fc78 authored by Robert Griesemer's avatar Robert Griesemer

tabwriter: delete unnecessary type declaration

R=rsc, r2
CC=golang-dev
https://golang.org/cl/2733041
parent c77f0900
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment