aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-07-23 02:16:25 +0000
committerEric Christopher <echristo@apple.com>2011-07-23 02:16:25 +0000
commit52a75bab9da635b52c778c0ec178f51b9303ebbe (patch)
tree03b64315ffdff2935bbeab01f01ed2146adedcbb
parent3db87b8103dd307b54d07ed9490b3ffdec0ed389 (diff)
Migrate 2007-10-01-BuildArrayRef.c from llvm/test/FrontendC.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135840 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Sema/2007-10-01-BuildArrayRef.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/Sema/2007-10-01-BuildArrayRef.c b/test/Sema/2007-10-01-BuildArrayRef.c
new file mode 100644
index 0000000000..4692731b5c
--- /dev/null
+++ b/test/Sema/2007-10-01-BuildArrayRef.c
@@ -0,0 +1,20 @@
+// RUN: not %clang_cc1_only -c %s -o - > /dev/null
+// PR 1603
+void func()
+{
+ const int *arr;
+ arr[0] = 1; // expected-error {{assignment of read-only location}}
+}
+
+struct foo {
+ int bar;
+};
+struct foo sfoo = { 0 };
+
+int func2()
+{
+ const struct foo *fp;
+ fp = &sfoo;
+ fp[0].bar = 1; // expected-error {{ assignment of read-only member}}
+ return sfoo.bar;
+}