ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gdc.dg/gdc77.d

12 lines
164 B
D

// https://bugzilla.gdcproject.org/show_bug.cgi?id=77
// { dg-do compile }
void fun(size_t n)(ubyte[n] val)
{
}
void test77(ubyte[3] buf)
{
fun(buf[0..2]);
}