blob: e9037552308a20ec64d3bedbf201134ff639654a [file] [log] [blame]
Tanya Lattner727842e2007-11-28 04:57:00 +00001// RUN: not %llvmgcc -S %s -o /dev/null |& grep "error: assignment of read-only location"
Devang Patel44247572007-10-01 21:22:57 +00002// PR 1603
3int func()
4{
5 const int *arr;
6 arr[0] = 1;
7}
8