]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.dg/gdc77.d
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / gdc77.d
CommitLineData
844fa2de
IB
1// https://bugzilla.gdcproject.org/show_bug.cgi?id=77
2// { dg-do compile }
3
4void fun(size_t n)(ubyte[n] val)
5{
6}
7
8void test77(ubyte[3] buf)
9{
10 fun(buf[0..2]);
11}