Files
moxa/_test/a43.go
2020-10-05 16:12:04 +02:00

18 lines
137 B
Go

package main
import "fmt"
type T [l1 + l2]int
const (
l1 = 2
l2 = 3
)
func main() {
fmt.Println(T{})
}
// Output:
// [0 0 0 0 0]