blob: d41e41f4a56772df0f240f3352e48f2db0c2fb27 [file] [log] [blame]
from li_std_stream import *
a = A()
o = ostringstream()
o << a << " " << 2345 << " " << 1.435
if o.str() != "A class 2345 1.435":
print "\"%s\"" % (o.str(),)
raise RuntimeError