1package semantictokens //@ semantic("")
2
3func f(x ...interface{}) {
4}
5
6func weird() { /*��*/ // comment
7	const (
8		snil   = nil
9		nil    = true
10		true   = false
11		false  = snil
12		cmd    = `foof`
13		double = iota
14		iota   = copy
15		four   = (len(cmd)/2 < 5)
16		five   = four
17	)
18	f(cmd, nil, double, iota)
19}
20
21/*
22
23multiline */ /*
24multiline
25*/
26type AA int
27type BB struct {
28	AA
29}
30type CC struct {
31	AA int
32}
33type D func(aa AA) (BB error)
34type E func(AA) BB
35