f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
20 lines
367 B
C
20 lines
367 B
C
// RUN: not %clang_cc1_only -c %s -o - > /dev/null
|
|
// PR 1603
|
|
void func()
|
|
{
|
|
const int *arr;
|
|
arr[0] = 1; // expected-error {{assignment of read-only location}}
|
|
}
|
|
|
|
struct foo {
|
|
int bar;
|
|
};
|
|
struct foo sfoo = { 0 };
|
|
|
|
int func2()
|
|
{
|
|
const struct foo *fp;
|
|
fp = &sfoo;
|
|
fp[0].bar = 1; // expected-error {{ assignment of read-only member}}
|
|
return sfoo.bar;
|
|
}
|