Is there a definitive list somewhere of standard library
functions that work with -betterC?
For example, the following code fragment (taken from the library
docs) does not work with -betterC.
```
extern(C) void main() {
import std.container.array;
auto arr = Array!int(0, 2, 3);
}
```