This has prompted me to write a data structure that I thought would be impossible until now....
False alarm:
```
writeln("typeof(x.next): ", typeof(x.next).stringof);
```
gives:
```
typeof(x.next): const(Node)
```
Oh well.
data pulverizer via Digitalmars-d-learn Wed, 23 Sep 2020 13:55:55 -0700
This has prompted me to write a data structure that I thought would be impossible until now....
False alarm:
```
writeln("typeof(x.next): ", typeof(x.next).stringof);
```
gives:
```
typeof(x.next): const(Node)
```
Oh well.