summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/li_std_stream_runme.m
blob: bf9402e166bab1958aae8173930eb834a764e36d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
li_std_stream

a = A();

o = ostringstream();

o << a << " " << 2345 << " " << 1.435;


if (o.str() !=  "A class 2345 1.435")
  error
endif