summaryrefslogtreecommitdiff
path: root/tests/headers/const-const-mut-ptr.h
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-05-15 19:31:50 -0400
committerGitHub <noreply@github.com>2018-05-15 19:31:50 -0400
commitd6d097cc1a662ef8131e47eaea72bc0c863e43b2 (patch)
tree10ab032849549f0e74e39caa5ac4551515317e70 /tests/headers/const-const-mut-ptr.h
parent74dcb202e398f8101a5bb387628d21ed0f781359 (diff)
parent716d53b02d363880184c05e80f8bf4982ee1ed23 (diff)
Auto merge of #1312 - emilio:constness-woes, r=fitzgen
ir: Handle *const T at the codegen level. Followup to #1311.
Diffstat (limited to 'tests/headers/const-const-mut-ptr.h')
-rw-r--r--tests/headers/const-const-mut-ptr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/headers/const-const-mut-ptr.h b/tests/headers/const-const-mut-ptr.h
new file mode 100644
index 00000000..cc7daf7c
--- /dev/null
+++ b/tests/headers/const-const-mut-ptr.h
@@ -0,0 +1,3 @@
+struct foo {
+ const int** const* const* bar;
+};