Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr60430.C
blob: 04167d29979374f5316e438ffd22db4efc9092d2 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
constexpr
const
int
A
=
42
;
const
int
&
B
=
A
;
static_assert
(&
A
==
&
B
,
"Bug"
);