mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
8 lines
151 B
C
8 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;
|
|
}
|
|
|