Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
;