]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.dg/pr90650a.d
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / pr90650a.d
CommitLineData
a1543fb1
IB
1// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90650
2// { dg-do compile }
3class c
4{
5 static f ()
6 {
7 return 0;
8 }
9}
10
11void g ()
12{
5fee5ec3 13 if (0 & [0] & c.f()) {} // { dg-error "array operation .\\\[0\\\] & 0 & f\\(\\). without destination memory not allowed" }
a1543fb1 14}