blob: 6c081753a9156131445c81e8e41edd18014d5a35 [file] [log] [blame]
// 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]);
}