[PATCH] D149264: GH62362: Handle constraints on "Using" inherited constructors

Erich Keane via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 26 12:37:20 PDT 2023


erichkeane added a comment.

Creduced the new crash down to:

  template <bool> struct a;
  template <> struct a<false> {
    template <typename b, typename c> constexpr static c e(b, c) {
      typename b ::f d;
    }
  };
  int h;

I'll end up having to look at it tomorrow, but it isn't clear how this patch broke that.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D149264/new/

https://reviews.llvm.org/D149264



More information about the cfe-commits mailing list