Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
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"
);