mirror of
https://github.com/json-iterator/go.git
synced 2024-11-30 08:36:43 +02:00
11 lines
147 B
Go
11 lines
147 B
Go
package test
|
|
|
|
func init() {
|
|
two := float64(2)
|
|
marshalCases = append(marshalCases,
|
|
[1]*float64{nil},
|
|
[1]*float64{&two},
|
|
[2]*float64{},
|
|
)
|
|
}
|