blob: 2d57029fc05f882a618f46d83f8229b450d6a748 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -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}