blob: bba31e6afb282408557eae0d0a3bbc457673bd42 [file] [log] [blame]
// PR c++/18464
struct A
{
A(int);
operator void*() const;
};
template<int> void foo(const A& x) { 0 ? x : (x ? x : 0); }