https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98600
Elliot Haisley <elliot.haisley at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |elliot.haisley at gmail dot com
--- Comment #2 from Elliot Haisley <elliot.haisley at gmail dot com> ---
A more minimal reproducer of this issue
```
template<typename T, auto T::*something>
struct a{};
struct b {
int a;
};
int main() {
b x;
x.a = 1;
a<b, &b::a>;
}
```
