1package test
2
3func init() {
4	testCases = append(testCases,
5		(*struct {
6			Upper bool `json:"M"`
7			Lower bool `json:"m"`
8		})(nil),
9	)
10	asymmetricTestCases = append(asymmetricTestCases, [][2]interface{}{
11		{
12			(*struct {
13				Field string
14			})(nil),
15			(*struct {
16				FIELD string
17			})(nil),
18		},
19		{
20			(*struct {
21				F1 string
22				F2 string
23				F3 string
24			})(nil),
25			(*struct {
26				F1 string
27			})(nil),
28		},
29	}...)
30}
31