https://issues.dlang.org/show_bug.cgi?id=20505
--- Comment #1 from Walter Bright <[email protected]> --- The problem is the line `foo(arr)` where `scope char[][2] arr` is converted to `scope char[][]`. This conversion should not be allowed, as it loses the scope-ness of the second level of indirection. --
