Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-const2.C
blob: 7aa16a362fdb826dec61e42047965e0d83c361c2 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
int
i
=
42
;
constexpr
int
*
p
=
&
i
;
constexpr
int
const
*
const
*
q
=
&
p
;
constexpr
int
const
*
r
=
*
q
;