summaryrefslogtreecommitdiffstats
path: root/test/Sema/pointer-conversion.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/pointer-conversion.c')
-rw-r--r--test/Sema/pointer-conversion.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Sema/pointer-conversion.c b/test/Sema/pointer-conversion.c
new file mode 100644
index 0000000..5f41ff6
--- /dev/null
+++ b/test/Sema/pointer-conversion.c
@@ -0,0 +1,10 @@
+//RUN: clang-cc -fsyntax-only -verify %s
+
+char * c;
+char const ** c2 = &c; // expected-warning {{initializing, 'char const **' and 'char **' have different qualifiers in nested pointer types}}
+
+typedef char dchar;
+dchar *** c3 = &c2; // expected-warning {{initializing, 'dchar ***' and 'char const ***' have different qualifiers in nested pointer types}}
+
+volatile char * c4;
+char ** c5 = &c4; // expected-warning {{initializing, 'char **' and 'char volatile **' have different qualifiers in nested pointer types}}
OpenPOWER on IntegriCloud