Calling toString on a Tuple with a null Nullable results in a AssertError
Reduced case:
```
import std.typecons;
import std.stdio;
struct Result
{
Nullable!(int, int.min) a;
}
auto func()
{
Result res;
return tuple(res);
}
void main()
{
writeln(func());
}
```
Comment #1 by jack — 2021-09-04T17:44:04Z
Just realized the root cause of this is the alias this. This should be deprecated and removed.
Comment #2 by robert.schadek — 2024-12-01T16:39:15Z