aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.martin/conv1.C
blob: 0227800d3cfead959342d7f4a6a1e368363a7031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct S{
  operator bool()
  {
    return true;
  }
};

int main()
{
  S a;
  if (S &b = a);
}