mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-09 21:50:38 +00:00
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;
|
||
|
}
|
||
|
|