| Tanya Lattner | 727842e | 2007-11-28 04:57:00 +0000 | [diff] [blame] | 1 | // RUN: not %llvmgcc -S %s -o /dev/null |& grep "error: assignment of read-only location" |
| Devang Patel | 4424757 | 2007-10-01 21:22:57 +0000 | [diff] [blame] | 2 | // PR 1603 |
| 3 | int func() | ||||
| 4 | { | ||||
| 5 | const int *arr; | ||||
| 6 | arr[0] = 1; | ||||
| 7 | } | ||||
| 8 | |||||