https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117450
Bug ID: 117450 Summary: [DR1753] Allow ~decltype Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: mpolacek at gcc dot gnu.org Target Milestone: --- ``` using T = int; void f (T n) { n.~decltype(n)(); } ``` should probably be OK since <https://cplusplus.github.io/CWG/issues/1753.html>.