Generator crashes and therefore produces no files when members with similar names are included and one of them is used in a constructor.
Here's a MRE:
[MemoryPackable]
public partial class A {
[MemoryPackInclude]
private int _b;
public int B => _b;
public A(int b) => _b = b;
}