blob: 8bf6a09652e2112b20c773ace8e3e4b06718ec82 [file] [log] [blame]
// PR c++/84125
// { dg-do compile { target c++14 } }
struct X { constexpr operator bool() const { return true; } };
int main(){
[](auto) {
static_assert(X{}, "");
};
}