summaryrefslogtreecommitdiff
path: root/tests/compile
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-09-29 07:57:14 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-09-30 13:38:59 +0200
commitcd9b22bf2b57d626f87e4239f847775e2fb11a84 (patch)
treef0d391b24de8f430b90e07881da9bb9e5fadbc3b /tests/compile
parentd941d208deb172af157505913c98d5b49d95e5d5 (diff)
downloadcython-cd9b22bf2b57d626f87e4239f847775e2fb11a84.tar.gz
Join '*' and '**' parsing in declarators to avoid differences for 'const' parsing etc.
Diffstat (limited to 'tests/compile')
-rw-r--r--tests/compile/const_decl.pyx15
1 files changed, 10 insertions, 5 deletions
diff --git a/tests/compile/const_decl.pyx b/tests/compile/const_decl.pyx
index 5424c8f90..c47f952df 100644
--- a/tests/compile/const_decl.pyx
+++ b/tests/compile/const_decl.pyx
@@ -1,12 +1,17 @@
# mode: compile
-cdef const_args(const int a, const int *b, const (int*) c, int *const d):
+cdef const_args(const int a, const int *b, const (int*) c, int *const d, int **const e, int *const *f):
print a
print b[0]
- b = NULL # OK, the pointer itself is not const
- c[0] = 4 # OK, the value is not const
- d[0] = 7 # OK, the value is not const
+ b = NULL # OK, the pointer itself is not const
+ c[0] = 4 # OK, the value is not const
+ d[0] = 7 # OK, the value is not const
+ e[0][0] = 1 # OK, the value is not const
+ e[0] = NULL # OK, the pointed pointer is not const
+ f[0][0] = 1 # OK, the value is not const
+ f = NULL # OK, the pointer is not const
def call_const_args(x):
cdef int k = x
- const_args(x, &k, &k, &k)
+ cdef int* arr = [x]
+ const_args(x, &k, &k, &k, &arr, &arr)