Hi,
I ran into this error when I was trying to build my code, and here is the example code that can reproduce it (python 3.8 + cython 3.0a6):
```
# distutils: language = c
# cython: language_level=3
from cpython.string cimport PyString_AS_STRING
cdef void test(char* name):
pass
test(PyString_AS_STRING(f'testString'))
```
Error:
```
test.c:1898:22: error: implicit declaration of function 'PyString_AS_STRING' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
__pyx_f_4test_test(PyString_AS_STRING(__pyx_n_u_testString));
^
test.c:1898:22: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
__pyx_f_4test_test(PyString_AS_STRING(__pyx_n_u_testString));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.c:1468:52: note: passing argument to parameter '__pyx_v_name' here
static void __pyx_f_4test_test(CYTHON_UNUSED char *__pyx_v_name) {
^
1 warning and 1 error generated.
error: command 'clang' failed with exit status 1
```
I did search for this error in the group and google, it should be related to the import issue, but I found the `PyString_AS_STRING` in `include/cpython/string.pxd`, what did I do wrong here?