```c++ using arr_t = int[10]; arr_t* f(); arr_t& g(); arr_t&& h(); ``` turns into ```c++ using arr_t = int[10]; arr_t (*f()); arr_t &; arr_t &&; ``` There is no `g` and `h` in the cppinsights output.