compiler: extend possible returned values

All integer values (int32, uint64...) should be able to be returned.
This commit is contained in:
Evgenii Stratonikov 2020-04-28 16:42:29 +03:00
parent 7e98a2ffa0
commit bfcb1a409f
2 changed files with 11 additions and 1 deletions

View file

@ -5,6 +5,14 @@ import (
"testing"
)
func TestReturnInt64(t *testing.T) {
src := `package foo
func Main() int64 {
return 1
}`
eval(t, src, big.NewInt(1))
}
func TestMultipleReturn1(t *testing.T) {
src := `
package hello