1package checker_test
2
3type myint struct{}
4
5type (
6	myint8  = int
7	myint16 = int
8)
9
10func mybool() {}
11
12var (
13	myfloat32 = 1
14	myfloat64 = 2
15)
16
17const (
18	mycomplex64  = 1
19	mycomplex128 = 2
20)
21
22func (myint) close() {}
23