26.06.2019 20:39, bauss пишет:
auto stack = SList!int(0);
stack.removeFront();

Then something that just allowed you to do:
auto stack = SList!int;

this compiles:
```
auto stack = SList!int();
```

Reply via email to