This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
arf/parser/type_test.go

18 lines
242 B
Go

package parser
import "testing"
func TestType (test *testing.T) {
checkTree ("../tests/parser/type", false,
`:arf
---
type ro Basic:Int
type ro BasicInit:Int 6
type ro IntArray:{Int ..}
type ro IntArrayInit:Int:3
3298
923
92
`, test)
}