const expect = @import("std").testing.expect; test "fully anonymous list literal" { dump(.{ @as(u32, 1234), @as(f64, 12.34), true, "hi"}); } fn dump(args: anytype) void { expect(args.@"0" == 1234); expect(args.@"1" == 12.34); expect(args.@"2"); expect(args.@"3"[0] == 'h'); expect(args.@"3"[1] == 'i'); }