aboutsummaryrefslogtreecommitdiff
path: root/test/CFrontend/2007-10-01-BuildArrayRef.c
blob: fb8ee3dc1e75590fc82547af4781d97b61ffb9a2 (plain)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc -S %s -o /dev/null |& grep "error: assignment of read-only location"
// PR 1603
int func()
{
   const int *arr;
   arr[0] = 1;
}