// PR 83988 ICE template struct optional {}; struct get_from_json { template operator optional() const {return optional ();} template optional maybe() const { return this->operator optional(); } }; void test() { get_from_json().maybe(); }