1 // { dg-do compile { target c++11 } }
2 
3 int i = 42;
4 constexpr int *p = &i;
5 constexpr int const *const *q = &p;
6 constexpr int const *r = *q;
7