Operators with std::string
[libacl.git] / test / string_cat.exp
1 abc + def = abcdef
2 def + abc = defabc
3 abc + "xyz" = abcxyz
4 "klm" + def = klmdef
5 abc + xyz = abcxyz
6 klm + def = klmdef
7 abc += def = abcdef
8 abcd += "xyz" = abcdxyz
9 ghij += opqr = ghijopqr
10 PASS string_cat (exit status: 0)