We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const TestStr = struct { const StrInside = struct { a: f32, b: f32, }; fn func() void { var str = StrInside{ . // ---> shows nothing. Should display `a` or `b` }; } };