1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/FrontendC/2007-10-01-BuildArrayRef.c
Stuart Hastings 92dd0fd9ba Typo. Thanks to BillW for pointing it out!
llvm-svn: 113281
2010-09-07 20:39:07 +00:00

21 lines
372 B
C

// RUN: not %llvmgcc_only -c %s -o /dev/null |& FileCheck %s
// PR 1603
void func()
{
const int *arr;
arr[0] = 1; // CHECK: 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; // CHECK: error: assignment of read-only member 'bar'
return sfoo.bar;
}