blob: 0534b41ad06be96e8d1cc9b8202329937ca34f90 [file] [log] [blame]
// FIXME this is currently invalid, but seems like it should be OK
// { dg-do compile { target c++11 } }
struct A { A() { } };
template<class T>
constexpr bool ignore(T&&) { return true; }
static_assert(ignore(10), "Error"); // OK
A s;
static_assert(ignore(s), "Error"); // Currently an error