(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test19804.d
// https://issues.dlang.org/show_bug.cgi?id=19804

struct A { float e; }

void foo(A[1] a)
{
    void bar(A[1] a) { a[] = null; }
    bar(a);
}