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

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced:
```
struct incomplete;
template<typename T> struct C
{
    static constexpr T t{};
};


int main() {
    C<incomplete> t;
   // t.t;
}
```
If we uncomment t.t, then GCC will reject it.

Reply via email to