blob: 73677c0e767b99d3b71f1888eedb1d1c1312876a [file] [log] [blame]
// { dg-do compile { target c++11 } }
int main(int argc, char** argv)
{
int i;
int &ir = i;
const int ci = 1;
const int &cir = ci;
[] { sizeof (argc); sizeof (i); sizeof (ir); sizeof (ci); sizeof (cir); };
[] { int ia[ci]; };
}