================
----------------
bolshakov-a wrote:
I'd prefer something simpler like:
```cpp
struct A { int* pi; };
template <A> void TplFn();
int i;
void Fn() {
TplFn<A{&i + 1}>();
}
```
with checking of the full mangled name.
https://github.com/llvm/llvm-project/pull/97792