blob: 79e6dda3e11c4def60f1b3c084952e4a23a3ef78 [file] [log] [blame]
Peter Collingbourne148f1f72011-03-20 08:06:45 +00001// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
2
3constexpr int x = 1;
4constexpr int id(int x) { return x; }
5
6void foo(void) {
7 x = 2; // expected-error {{read-only variable is not assignable}}
8 int (*idp)(int) = id;
9}
10