Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
e264f62ca09a8f65c87a46d562a4d0f9ec5d457e
/
.
/
test
/
FrontendC
/
2007-10-01-BuildArrayRef.c
blob: e9037552308a20ec64d3bedbf201134ff639654a [
file
] [
log
] [
blame
]
Shih-wei Liao
e264f62
2010-02-10 11:10:31 -0800
[
diff
] [
blame^
]
1
// RUN: not %llvmgcc -S %s -o /dev/null |& grep "error: assignment of read-only location"
2
// PR 1603
3
int
func
()
4
{
5
const
int
*
arr
;
6
arr
[
0
]
=
1
;
7
}
8