Blob


1 const npversion = "9P2000"
3 const (
4 one = 1
5 two = 2
7 n = 4
8 )
10 proc test(x) {
11 skip()
12 }
14 testing "skip called in proc" dir "./root" {
15 foo = 5:u8
16 test(3:u32)
17 assert 1 == 0
19 assert (
20 5 == 7
21 7 == 9
22 8 == 0
23 )
24 }
26 testing "casts" dir "./root" {
27 foo = 300:u8
28 }