mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 12:36:07 +00:00

Due to a missing -verify, 2007-10-01-BuildArrayRef.c was a no-op. The message was changed 5 years ago so also update the test to reflect the new wording. llvm-svn: 196729
21 lines
369 B
C
21 lines
369 B
C
// 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;
|
|
}
|