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



a = A();

o = wostringstream();

o << a << u" " << 2345 << u" " << 1.435 << wends;

if (o.str() !=  "A class 2345 1.435\0")
  error("failed");
endif