summaryrefslogtreecommitdiffstats
path: root/test/Sema/cast.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/cast.c')
-rw-r--r--test/Sema/cast.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Sema/cast.c b/test/Sema/cast.c
new file mode 100644
index 0000000..ec19626
--- /dev/null
+++ b/test/Sema/cast.c
@@ -0,0 +1,14 @@
+// RUN: clang-cc -fsyntax-only %s -verify
+
+typedef struct { unsigned long bits[(((1) + (64) - 1) / (64))]; } cpumask_t;
+cpumask_t x;
+void foo() {
+ (void)x;
+}
+void bar() {
+ char* a;
+ double b;
+ b = (double)a; // expected-error {{pointer cannot be cast to type}}
+ a = (char*)b; // expected-error {{cannot be cast to a pointer type}}
+}
+
OpenPOWER on IntegriCloud