blob: c92d6ac774cd6482fec6f478e00b6e10445e34a2 [file] [log] [blame]
// PR c++/91930
// { dg-do compile { target c++2a } }
template <typename T> struct basic_mixin {
basic_mixin() requires true;
};
struct mixin : basic_mixin<int> {
using basic_mixin<int>::basic_mixin;
};
mixin m;