1
0
mirror of https://github.com/json-iterator/go.git synced 2025-11-29 22:47:28 +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 A string
type typeA string
type typeForTest struct {
F1 A
F2 A
F3 A
F1 typeA
F2 typeA
F3 typeA
}