mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-09 12:11:20 +00:00
11 lines
112 B
Plaintext
11 lines
112 B
Plaintext
|
// -*- mode: go -*-
|
||
|
|
||
|
package test
|
||
|
|
||
|
import "math/big"
|
||
|
|
||
|
type Test struct {
|
||
|
Int *big.Int
|
||
|
IntNoPtr big.Int
|
||
|
}
|