xref: /minix/external/bsd/llvm/dist/clang/test/Sema/assign.c (revision 83133719)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 void *test1(void) { return 0; }
4 
5 void 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];
10 void 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