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