https://gcc.gnu.org/bugzilla/show_bug.cgi?id=125779

--- Comment #1 from Drea Pinski <pinskia at gcc dot gnu.org> ---
Note edg also rejects this for the same reason as GCC.

Simplified testcase:
```
template <class>
struct bind {
        void f() requires false;
        void f() requires true;
};

auto main() -> int {
    &bind<int>::f;
        return 0;
}
```

Reply via email to