aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/asm_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethutil/asm_test.go')
-rw-r--r--ethutil/asm_test.go31
1 files changed, 0 insertions, 31 deletions
diff --git a/ethutil/asm_test.go b/ethutil/asm_test.go
deleted file mode 100644
index a9ad347dd..000000000
--- a/ethutil/asm_test.go
+++ /dev/null
@@ -1,31 +0,0 @@
-package ethutil
-
-import (
- "fmt"
- "testing"
-)
-
-func TestPreProcess(t *testing.T) {
- main, init := PreProcess(`
- init {
- // init
- if a > b {
- if {
- }
- }
- }
-
- main {
- // main
- if a > b {
- if c > d {
- }
- }
- }
- `)
-
- fmt.Println("main")
- fmt.Println(main)
- fmt.Println("init")
- fmt.Println(init)
-}