aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/2007-10-01-BuildArrayRef.c
blob: 0a3e9d4238f5633bd7620a00e6c7063e9b3baa37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: %clang_cc1 -fsyntax-only -verify %s
// PR 1603
void func(void)
{
   const int *arr;
   arr[0] = 1;  // expected-error {{read-only variable is not assignable}}
}

struct foo {
  int bar;
};
struct foo sfoo = { 0 };

int func2(void)
{
  const struct foo *fp;
  fp = &sfoo;
  fp[0].bar = 1;  // expected-error {{read-only variable is not assignable}}
  return sfoo.bar;
}