<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/116660>116660</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
Sometimes clang diagnostics has missing "requested here" elements of template instantiation
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
geza-herman
</td>
</tr>
</table>
<pre>
Look at this (intentionally) non-compiling example:
```c++
template <typename T>
T level0(T t) {
return t + 1;
}
template <typename T>
T level1(T t) {
return level0(t);
}
template <typename T>
T level2(T t) {
return level1(t);
}
int main() {
level2(nullptr);
}
```
`T` is deduced as `nullptr_t`, `level0` cannot add `1` to it, so clang emits this useful error, listing the whole "instantiation stack":
```
t.cpp:3:14: error: invalid operands to binary expression ('std::nullptr_t' and 'int')
3 | return t + 1;
| ~ ^ ~
t.cpp:8:12: note: in instantiation of function template specialization 'level0<std::nullptr_t>' requested here
8 | return level0(t);
| ^
t.cpp:13:12: note: in instantiation of function template specialization 'level1<std::nullptr_t>' requested here
13 | return level1(t);
| ^
t.cpp:17:5: note: in instantiation of function template specialization 'level2<std::nullptr_t>' requested here
17 | level2(nullptr);
| ^
```
Now, if you change the return type of `level1` and `level2` to `auto`, clang no longer lists the whole stack, it only shows a truncated version, it is no longer possible to know where `level0` instantiated from:
```
t.cpp:3:14: error: invalid operands to binary expression ('std::nullptr_t' and 'int')
3 | return t + 1;
| ~ ^ ~
t.cpp:8:12: note: in instantiation of function template specialization 'level0<std::nullptr_t>' requested here
8 | return level0(t);
| ^
```
It seems that functions which call a function with `auto` return type are omitted from the stack. But the interesting thing is that if the return type of `level0` is changed to `auto` as well (so all 3 functions return `auto`), then the whole stack is shown again.
(Debian clang version 20.0.0 (++20241008102056+4d218caa7716-1~exp1))
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzsVkuP4zYT_DX0pTEGH7YkH3TwvIAP-JBL5h7QVNtiliIVsjVe72F_e0BZ48eOM0k2C-QSQbAliurqalaxpVOyO49Ys-U9Wz7O9EBtiPUOv-i7FmOn_WwTmkP9_xA-gSag1iZgsrKe0JMNXjt3YHIFPvg7E7reOut3gJ911ztkas34I-NrVvDjaZi8z-c4Stj1ThMCUw906NHrDuGFqafj4xdw-IqOM1m9AGUQVk5vAgBEpCF6IGDyHgRT0yNWPk4XfwNDfIxxyiPP-GdI8i8giT9Bsp6g09YzWb2LcwLxg3M9xdth3pbjMior-AsrONgEDTaDwQZ0AlbwKdIvlF-QD3loKkjBwWjvA4Fumjwu8hAFsJQnpgDG6SyHzlI6amdIuB0cYIwh5jnOJsqKoRZh3waHwKS0PpH2ZHVWGCTS5hOT8qymWyRobvqeqbViai0WTK0nDLUG61-1sw2EHqP2TcoZbqzX8QD4uY-YUoYZq1kmajKOWp9ZyxK0b4DJ0vp8l0t6qrcCVj78kRZhPPKEi-MrsOUTfL3OuspZZ4bgA-ExabguQ9jCdvBmvD5pLfVorHb2y3EOk-W0NOrhBhP1lMlE_G3ARNhAixHPmVanTD-U_ZkUWz5dsxDqx9IQ30FDqJs03nnq22V5T6Zkar38YVzk93Apxyw_8vS1xE4kbjr8p7DPlrNbOIQBTKv9Dkfjvcn30GPm9Gbw0c2j9KcBOdmbFVwPFKb94OhxH8AFv8M4WjpdGHry7wNYguDdAVIb9gk0UBy80Zn1K8bswWmSTRfR-pCS3TjMuJ982MM-l-h6EzqvCjawjaF733j-2yT-7U3ipiT_R5AQuywXTafUE-xba1ow2jnQZ0Z7S-2F-K50qyNC6Cy9SWAU4Ci9OdwPNN7mr5aIbw0n_9oJ2W4_MgKf-uLRMs21BXKX3KNzWRspQE5ZXTCZQl5aZpV1Ti36b02SMbI5POidtn5-1e5k9Ygbq_3kt8kyIPmcz_lRmPnTSnK5EJxXgku-LJi8XzRSVEbrshTFnfiKn3sxprCaNbVqVmqlZ1iLUonVYqWWctbWWJRYlsropSkrUyyxEkXBV2JValMqgzNbjyhCVKLkUsn5wpRVtdVbrYysVhtkC46dtm7u3Gs3D3E3sykNWAtRFAWfOb1Bl8ZvTilHOrm9Lx9nsc4v3G2GXWILPm4k5xBkyWH9c-iQbIdpqkNj9c6HRNYkaHWCzqaUV5ZJ-Y2GpQR02KGnlBf3ZI8rB82G6OqWqE_ZF_KZyeedpXbYzE3omHzO2Ux_d30Mv6IhJp9HdonJ54ngay1_DwAA__8raGzc">