summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/li_std_wstream_runme.m
blob: a017e8acd7d085cecc6743e6548cd5c518c3b5a2 (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
endif