1 // RUN: %clang_cc1 -fsyntax-only -verify %s 2 test1(void)3void *test1(void) { return 0; } 4 test2(const struct{int a;} * x)5void test2 (const struct {int a;} *x) { 6 x->a = 10; // expected-error {{read-only variable is not assignable}} 7 } 8 9 typedef int arr[10]; test3()10void test3() { 11 const arr b; 12 const int b2[10]; 13 b[4] = 1; // expected-error {{read-only variable is not assignable}} 14 b2[4] = 1; // expected-error {{read-only variable is not assignable}} 15 } 16