blob: b25262c624388662d7f986adc95b4f4ab3371a01 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Chris Lattner1e45efa2007-08-28 16:20:14 +00002
3void *test1(void) { return 0; }
4
Eli Friedman51019072008-02-06 22:48:16 +00005void test2 (const struct {int a;} *x) {
6 x->a = 10; // expected-error {{read-only variable is not assignable}}
7}
Steve Naroff336ed0b2008-02-09 16:59:44 +00008
9typedef int arr[10];
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}