Error: ```/var/folders/lb/nhsppbxs5_v27pn_x3kf66wc0000gn/T/solod_build835352496/main.c:15:60: error: member reference type 'so_Error' (aka 'struct so_Error_ *') is a pointer; did you mean to use '->'? 15 | so_panic(so_cstr(fmt_Sprintf(buf, "%s: %s", so_cstr(err.Error(err.self)), so_cstr(msg)))); | ~~~^ ``` with: ```go func boom(err error, msg string) { buf := fmt.NewBuffer(1 << 10) panic(fmt.Sprintf(buf, "%s: %s", err.Error(), msg)) } ```
Error:
with: