1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3void *test1(void) { return 0; }
4
5void test2 (const struct {int a;} *x) {
6  // expected-note@-1 {{variable 'x' declared const here}}
7
8  x->a = 10;
9  // expected-error-re@-1 {{cannot assign to variable 'x' with const-qualified type 'const struct (anonymous struct at {{.*}}assign.c:5:19) *'}}
10}
11
12typedef int arr[10];
13void test3() {
14  const arr b;
15  const int b2[10];
16  b[4] = 1; // expected-error {{read-only variable is not assignable}}
17  b2[4] = 1; // expected-error {{read-only variable is not assignable}}
18}
19