For two files in different packages: ``` go package package1 type myType int ``` ``` go package package2 func (s *myType) Hello() { } ``` s.Hello is not appeared in structure popup. For two files from the same package: ``` go package main type myType int ``` ``` go package main func (s *myType) Hello() { } ``` `Hello` method will be show only with `show package structure` checkbox enabled