https://github.com/vbvictor commented:
Can we add tests when multiple consts can be added (e.g. pointer and pointee can be const), but we have only `auto` type, like ```cpp auto /* int* */ p_ptr = ...; ``` Usually we would produce something like: ```cpp int const* const p_ptr = ...; ``` https://github.com/llvm/llvm-project/pull/157319 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
