mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-03 10:54:42 +00:00
97960ce055
llvm-svn: 42502
9 lines
147 B
C
9 lines
147 B
C
// RUN: %llvmgcc -S %s -o /dev/null |& grep "error: assignment of read-only location"
|
|
// PR 1603
|
|
int func()
|
|
{
|
|
const int *arr;
|
|
arr[0] = 1;
|
|
}
|
|
|