compiler: add test for compile and save

This commit is contained in:
Vsevolod Brekelov 2020-01-14 17:33:04 +03:00
parent d576aa2753
commit 7084925e4b
2 changed files with 58 additions and 18 deletions

7
pkg/compiler/testdata/compile/test.go vendored Normal file
View file

@ -0,0 +1,7 @@
package compile
import "github.com/CityOfZion/neo-go/pkg/interop/runtime"
func Main() {
runtime.Notify("Hello world!")
}