compiler: extend possible returned values
All integer values (int32, uint64...) should be able to be returned.
This commit is contained in:
parent
7e98a2ffa0
commit
bfcb1a409f
2 changed files with 11 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue