911501e591ba43fff43b7580f028fb921eebb0a3
[dotfiles/.git] / alias.go
1 package main
2
3 type t1 struct{}
4 type t2 struct{} // want `t2`
5 type t3 struct{}
6
7 type alias1 = t1
8 type alias2 = t2 // want `alias2`
9 type alias3 = t3
10 type alias4 = int
11
12 func main() {
13         var _ alias1
14         var _ t3
15 }