1// https://issues.dlang.org/show_bug.cgi?id=20447
2void main()
3{
4    import core.thread;
5    int[] x;
6    auto b = x.dup;
7}
8