New Paste :: Recent Pastes:: Add Line Numbers
A Paste by Anonymous
#include <iostream> struct foo { template<typename T> foo( const T& ) { T()=2; } template<typename T> void operator= ( const T& ) { T()=3; } foo() {} }; int main() { foo f( (foo()) ); }