We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func main() { a := A{ Tag: "tag-A", Num: 1, InA: InA{ Id: 100, Type: "test", }, } spew.Dump(a) } type A struct { Tag string Num int InA } type InA struct { Id int Type string } func (t InA) String() string { return t.Type }
(main.A) test
The text was updated successfully, but these errors were encountered:
and if struct member not anonymous, go-spew works
Sorry, something went wrong.
No branches or pull requests
example code
unexpected output
(main.A) test
The text was updated successfully, but these errors were encountered: