diff --git a/exec/native_compile.go b/exec/native_compile.go index 2706ca98..7fe4af9a 100644 --- a/exec/native_compile.go +++ b/exec/native_compile.go @@ -91,7 +91,7 @@ func (vm *VM) tryNativeCompile() error { } for i := range vm.funcs { - if _, isGoFunc := vm.funcs[i].(*goFunction); isGoFunc { + if _, isGoFunc := vm.funcs[i].(goFunction); isGoFunc { continue }