for example, I have file "pkg/A/internal/A.go" that has code like shown below
```golang
package internal
type AS[T any] struct { }
func (s *AS[T]) helloLink() string {
return "hello"
}
```
And I have another one file "pkg/B/B.go"
```golang```
when I try to run this code, it tells that " parameterized function is missing function body"