aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/pr90650a.d
blob: 62b79941f2063e77b48e602c5a4e0c38e534b2b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90650
// { dg-do compile }
class c
{
  static f ()
  {
    return 0;
  }
}

void g ()
{
  if (0 & [0] & c.f()) {}   // { dg-error "array operation .\\\[0\\\] & 0 & f\\(\\). without destination memory not allowed" }
}