```zig const TestStr = struct { const StrInside = struct { a: f32, b: f32, }; fn func() void { var str = StrInside{ . // ---> shows nothing. Should display `a` or `b` }; } }; ```