Issue 174543
Summary Clang modules crash on recursive reference in function template
Labels clang
Assignees
Reporter kamrann
    Regression on trunk, since clang 21:
```
export module m;
template < typename T >
void fun(T)
{
    fun(9);
}
```
```
Program terminated with signal: SIGSEGV
```

_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to