xref: /freebsd/bin/sh/tests/parser/dollar-quote8.0 (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1
2[ $'hello\0' = hello ]
3[ $'hello\0world' = hello ]
4[ $'hello\0'$'world' = helloworld ]
5[ $'hello\000' = hello ]
6[ $'hello\000world' = hello ]
7[ $'hello\000'$'world' = helloworld ]
8[ $'hello\x00' = hello ]
9[ $'hello\x00world' = hello ]
10[ $'hello\x00'$'world' = helloworld ]
11