✅ `with` expression does not work with `ValueTuple`
This code:
Gives
Gives
The name 'Bar' does not exist in the current context on the second line? Why is this?The name 'Bar' does not exist in the current contextFoo foo = new();
Foo foo1 = foo with { Bar.Item1 = 1 };
record Foo
{
public (int, int) Bar = (0, 0);
}