rust/src/test/run-pass/str-multiline.rs

16 lines
270 B
Rust

// -*- rust -*-
extern mod std;
fn main() {
let a: ~str = ~"this \
is a test";
let b: ~str =
~"this \
is \
another \
test";
assert (a == ~"this is a test");
assert (b == ~"this is another test");
}