+2018-01-23 Nathan Sidwell <nathan@acm.org>
+
+ PR c++/83988
+ * pt.c (tsubst_baselink): Remove optype assert.
+ * ptree.c (cxx_print_xnode): <case BASELINK> Print BASELINK_OPTYPE.
+
2018-01-23 Jakub Jelinek <jakub@redhat.com>
PR c++/83958
fns = BASELINK_FUNCTIONS (baselink);
}
else
- {
- gcc_assert (optype == BASELINK_OPTYPE (baselink));
- /* We're going to overwrite pieces below, make a duplicate. */
- baselink = copy_node (baselink);
- }
+ /* We're going to overwrite pieces below, make a duplicate. */
+ baselink = copy_node (baselink);
/* If lookup found a single function, mark it as used at this point.
(If lookup found multiple functions the one selected later by
print_node (file, "binfo", BASELINK_BINFO (node), indent + 4);
print_node (file, "access_binfo", BASELINK_ACCESS_BINFO (node),
indent + 4);
+ print_node (file, "optype", BASELINK_OPTYPE (node), indent + 4);
break;
case OVERLOAD:
print_node (file, "function", OVL_FUNCTION (node), indent+4);
+2018-01-23 Nathan Sidwell <nathan@acm.org>
+
+ PR c++/83988
+ * g++.dg/template/pr83988.C: New.
+
2018-01-23 Jakub Jelinek <jakub@redhat.com>
PR c++/82882
--- /dev/null
+// PR 83988 ICE
+
+template<class T> struct optional {};
+struct get_from_json {
+ template<typename GetWhat>
+ operator optional<GetWhat>() const {return optional<GetWhat> ();}
+ template<typename AsWhat>
+ optional<AsWhat> maybe() const
+ {
+ return this->operator optional<AsWhat>();
+ }
+};
+void test()
+{
+ get_from_json().maybe<int>();
+}