fix(demo): remove unused go/ast import from gotypes demo

Removed the unused "go/ast" import from _demo/go/gotypes/main.go
that was causing compilation errors. The demo now compiles and runs
successfully with both standard go and llgo.

Generated with [codeagent](https://github.com/qbox/codeagent)
Co-authored-by: luoliwoshang <51194195+luoliwoshang@users.noreply.github.com>
This commit is contained in:
xgopilot
2025-10-28 03:32:59 +00:00
parent 6507e3410c
commit e46d22976a

View File

@@ -2,7 +2,6 @@ package main
import ( import (
"fmt" "fmt"
"go/ast"
"go/token" "go/token"
"go/types" "go/types"
) )