forked from OSchip/llvm-project
9 lines
151 B
C
9 lines
151 B
C
|
// RUN: not %llvmgcc -S %s -o /dev/null |& grep "error: assignment of read-only location"
|
||
|
// PR 1603
|
||
|
int func()
|
||
|
{
|
||
|
const int *arr;
|
||
|
arr[0] = 1;
|
||
|
}
|
||
|
|