mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-02 19:21:16 +00:00
10 lines
112 B
Go
10 lines
112 B
Go
// -*- mode: go -*-
|
|
|
|
package test
|
|
|
|
import "math/big"
|
|
|
|
type Test struct {
|
|
Int *big.Int
|
|
IntNoPtr big.Int
|
|
}
|