Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
28445f0b62f6aed851ff87ce64d9b19200d3211f
/
.
/
test
/
SemaCXX
/
cxx0x-constexpr-const.cpp
blob: 79e6dda3e11c4def60f1b3c084952e4a23a3ef78 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
constexpr
int
x
=
1
;
constexpr
int
id
(
int
x
)
{
return
x
;
}
void
foo
(
void
)
{
x
=
2
;
// expected-error {{read-only variable is not assignable}}
int
(*
idp
)(
int
)
=
id
;
}