https://issues.dlang.org/show_bug.cgi?id=20505

--- Comment #2 from Walter Bright <[email protected]> ---
This is illustrated by the following code:

  @safe void bar() {
    char[128] a;
    char[][2] arr = [a, a];
    char[][] a2 = arr; // should be error
    return a2[0];      // oops
  }

--

Reply via email to