2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2007-08-29 00:20:14 +08:00
|
|
|
|
|
|
|
void *test1(void) { return 0; }
|
|
|
|
|
2008-02-07 06:48:16 +08:00
|
|
|
void test2 (const struct {int a;} *x) {
|
|
|
|
x->a = 10; // expected-error {{read-only variable is not assignable}}
|
|
|
|
}
|
2008-02-10 00:59:44 +08:00
|
|
|
|
|
|
|
typedef int arr[10];
|
|
|
|
void test3() {
|
|
|
|
const arr b;
|
|
|
|
const int b2[10];
|
|
|
|
b[4] = 1; // expected-error {{read-only variable is not assignable}}
|
|
|
|
b2[4] = 1; // expected-error {{read-only variable is not assignable}}
|
|
|
|
}
|