blob: 280ccfebed7c09cae97909c3143095bdeb2f90a5 [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct A
{
int i;
template <class T>
constexpr A(T t): i(t) {}
};
struct B: A
{
using A::A;
};
constexpr B b(42);
#define SA(X) static_assert((X),#X)
SA(b.i == 42);