bar.gno
0.38 Kb · 14 lines
1// Package issue5736_bar is the caller-side fixture for
2// https://github.com/gnolang/gno/issues/5736. See the sibling
3// gno.land/r/tests/issue5736_common package for context.
4package issue5736_bar
5
6import (
7 u256 "gno.land/p/onbloc/uint256"
8 "gno.land/r/tests/issue5736_common"
9)
10
11func Call(cur realm) string {
12 out := issue5736_common.DoLsh(u256.NewUint(123), 1)
13 return out.Dec()
14}