2011-10-14 06:29:44 +08:00
|
|
|
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
|
2011-03-20 16:06:45 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|