Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/2007-10-01-BuildArrayRef.c @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
line wrap: on
line source
// RUN: %clang_cc1 -fsyntax-only -verify %s // PR 1603 void func() { const int *arr; arr[0] = 1; // expected-error {{read-only variable is not assignable}} } struct foo { int bar; }; struct foo sfoo = { 0 }; int func2() { const struct foo *fp; fp = &sfoo; fp[0].bar = 1; // expected-error {{read-only variable is not assignable}} return sfoo.bar; }