const std = @import("std");
const S = struct {
a: u32,
b: Map,
const Map = std.StringHashMap(?*S);
};
test "" {
_ = S;
}
On the plus side, we're collecting some useful regression test cases for self-hosted
Previous issue for context: #4560
It seems this has been broken since before 0.5.0 was released. I think I was hitting some other bug causing me to think this was a recent regression.
Most helpful comment
It seems this has been broken since before 0.5.0 was released. I think I was hitting some other bug causing me to think this was a recent regression.