summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/conversion/cond6.C
blob: 8c05e1b143ca72fe536b0ebb3490365226653e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/11283
// Converting "a" to the type of "i" produces "int" rather than "const
// int", which was causing build_conditional_expr to abort.  But we don't
// care about cv-quals on non-class rvalues.

struct A
{
  operator int ();
};

extern A a;
extern const int i;
extern bool b;

int f ()
{
  return b ? a : i;
}