mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-05-04 09:02:28 +00:00
compiler: support iota
This commit is contained in:
parent
d8badd9a8d
commit
05ef951055
2 changed files with 20 additions and 1 deletions
|
@ -72,3 +72,17 @@ func TestGlobalsWithFunctionParams(t *testing.T) {
|
|||
`
|
||||
eval(t, src, []byte("FOO"))
|
||||
}
|
||||
|
||||
func TestIota(t *testing.T) {
|
||||
src := `package foo
|
||||
const (
|
||||
a = 2 << iota
|
||||
b
|
||||
|
||||
c = 11
|
||||
)
|
||||
func Main() int {
|
||||
return a + b + c
|
||||
}`
|
||||
eval(t, src, big.NewInt(17))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue