summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/li_std_stream_runme.m
blob: cedc8e59ce45615f24d92f58d456e4de4e5f3e9e (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("failed");
endif