Files
llgo/test/bar/barinner/barinner_test.go
2025-06-24 16:34:33 +08:00

14 lines
190 B
Go

package barinner_test
import (
"testing"
"github.com/goplus/llgo/test/bar/barinner"
)
func TestBarInner(t *testing.T) {
if barinner.BarInner() != 2 {
t.Fatal("BarInner() != 2")
}
}