I'm trying to understand the error message I get on Ziglings Exercise $65:
exercises/065_builtins2.zig:45:19: note: struct declared here
const Narcissus = struct {
^~~~~~
exercises/065_builtins2.zig:50:5: note: 'fetchTheMostBeautifulType' is not a member function
fn fetchTheMostBeautifulType() type {
I've tried adding a self parameter, but that doesn't seem to do the trick.
What does it mean that this is "not a member function", if it's a function defined inside the scope of the struct.