Index: tests/strstream.cfa
===================================================================
--- tests/strstream.cfa	(revision cbedb6115c75cf8424055a5ada2d94c351814b4e)
+++ tests/strstream.cfa	(revision c7015e6b0399c7efde4f094495d88dc518c417cc)
@@ -5,11 +5,16 @@
     enum { size = 256 };
     char buf[size];
-    strstream sstr = { buf, size };
+    ostrstream osstr = { buf, size };
     int i = 3, j = 5, k = 7;
     double x = 12345678.9, y = 98765.4321e-11;
 
-    sstr | i | hex(j) | wd(10, k) | sci(x) | unit(eng(y));
-    write( sstr );
+    osstr | i | hex(j) | wd(10, k) | sci(x) | unit(eng(y));
+    write( osstr );
     printf( "%s", buf );
     sout | i | hex(j) | wd(10, k) | sci(x) | unit(eng(y));
+
+    // char buf2[] = "12 14 15 3.5 7e4";
+    // istrstream isstr = { buf2 };
+    // isstr | i | j | k | x | y;
+    // sout | i | j | k | x | y;
 }
