1
0
mirror of https://github.com/json-iterator/go.git synced 2025-06-21 23:07:33 +02:00

fix golint: do not export test types

This commit is contained in:
Tao Wen
2017-07-09 14:12:58 +08:00
parent 4351a2e6e9
commit 3b6853d209
61 changed files with 214 additions and 153 deletions

View File

@ -1,9 +1,9 @@
package test
type A1 string
type A2 [4]A1
type typeA1 string
type typeA2 [4]typeA1
type typeForTest struct {
F1 [4]A1
F2 A2
F1 [4]typeA1
F2 typeA2
}