mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-28 01:16:22 +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
|
|
}
|